firestorm/lib.rs
1//! Firestorm is the low-overhead intrusive flamegraph profiler for Rust.
2//! For documentation and usage, please see [Firestorm on Github](https://github.com/That3Percent/firestorm)
3
4#[cfg(any(feature = "enable_cpu_time", feature = "enable_system_time"))]
5pub use firestorm_enabled::*;
6
7#[cfg(not(any(feature = "enable_cpu_time", feature = "enable_system_time")))]
8#[doc(hidden)]
9pub mod disabled;
10
11#[cfg(not(any(feature = "enable_cpu_time", feature = "enable_system_time")))]
12pub use disabled::*;