//! The nannou audio API and implementation.
//!
//! - [**Stream**](./stream/struct.Stream.html) - for managing an input/output audio stream. This may be
//! created via the **App**'s **Audio** API.
//! - [**Buffer**](./buffer/struct.Buffer.html) - contains audio data, either for reading or writing.
//! This is passed to the `capture` or `render` function for each stream.
//! - [**Devices**](./device/struct.Devices.html) - for enumerating all audio devices on the system.
//! - [**Device**](./device/struct.Device.html) - for querying information about supported stream
//! formats or for creating a stream targeted towards a specific audio device.
//! - [**Receiver**](./receiver/struct.Receiver.html) and
//! [**Requester**](./requester/struct.Requester.html) for buffering input and output streams that
//! may deliver buffers of inconsistent sizes into a stream of consistently sized buffers.
pub use cpal;
pub use sample;
pub use Buffer;
pub use ;
pub use Receiver;
pub use Requester;
pub use Stream;