Update README for addition of host enumeration API

This commit is contained in:
mitchmindtree 2019-06-24 23:27:46 +02:00
parent 6e9b40e225
commit e131979d22
2 changed files with 1 additions and 1 deletions

View File

@ -6,6 +6,7 @@ Low-level library for audio input and output in pure Rust.
This library currently supports the following:
- Enumerate supported audio hosts.
- Enumerate all available audio devices.
- Get the current default input and output devices.
- Enumerate known supported input and output stream formats for a device.

View File

@ -2,7 +2,6 @@
pub(crate) mod alsa;
#[cfg(any(target_os = "macos", target_os = "ios"))]
pub(crate) mod coreaudio;
//mod dynamic;
#[cfg(target_os = "emscripten")]
pub(crate) mod emscripten;
pub(crate) mod null;