firewheel_graph/
lib.rs

1#![cfg_attr(not(feature = "std"), no_std)]
2
3pub mod backend;
4mod context;
5pub mod error;
6pub mod graph;
7pub mod processor;
8
9#[cfg(feature = "unsafe_flush_denormals_to_zero")]
10mod ftz;
11
12#[cfg(feature = "scheduled_events")]
13pub use context::ClearScheduledEventsType;
14pub use context::{ContextQueue, FirewheelConfig, FirewheelCtx};
15
16extern crate alloc;