1//! Support for streaming audio to and from files and memory buffers. 2 3mod format; 4mod stream; 5 6pub use format::{AudioFormat, BitRate, Channels, SampleRate}; 7pub use stream::{AudioStream, MemoryStream};