1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
//! A collection of helpers for handling audio
//!
//! **NOTE! this library is unfinished, incomplete and most likely contains bugs!**

#![no_std]
#![warn(missing_docs)]

extern crate alloc;

/// Common traits used throughout the library
pub mod traits;

/// Struct representing a stream of audio data
pub mod stream;

/// Wrapper type to handle contextual channel manipulation for [`crate::stream::Stream`]
pub mod signal;

/// Most basic building block for non-generated sound
pub mod clip;