Skip to main content

tracing_calltree/
lib.rs

1#![forbid(unsafe_code)]
2#![doc = include_str!("../README.md")]
3
4mod builder;
5mod display;
6mod layer;
7mod sample;
8mod snapshot;
9mod stats;
10mod tree;
11
12pub use builder::{CallTree, CallTreeBuilder, InternalStats};
13pub use layer::CallTreeLayer;
14pub use snapshot::{CallTreeSnapshot, NodeSnapshot};
15pub use stats::TimingStats;