Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ cidre = { git = "https://github.com/CapSoftware/cidre", rev = "bf84b67079a8", fe
"macos_13_0",
"cv",
"cf",
"core_audio",
"sc",
"av",
"blocks",
Expand Down
2 changes: 2 additions & 0 deletions crates/audio/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
mod audio_data;
mod playback;
mod renderer;

pub use audio_data::*;
pub use playback::*;
pub use renderer::*;

pub trait FromSampleBytes: cpal::SizedSample + std::fmt::Debug + Send + 'static {
Expand Down
Loading