diff --git a/README.md b/README.md index 3017107..705ad39 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/src/host/mod.rs b/src/host/mod.rs index 7862815..0c3155e 100644 --- a/src/host/mod.rs +++ b/src/host/mod.rs @@ -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;