1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
#[macro_use]
extern crate quick_error;

pub const MAX_DEPTH: usize = 32;
pub const MAX_THREAD_NAME: usize = 16;

mod collector;
mod error;
mod frames;
mod profiler;
mod report;
mod timer;

pub use error::*;
pub use frames::*;
pub use profiler::{ProfilerGuard, PROFILER};
pub use report::*;