Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/profile/src/lib.rs')
| -rw-r--r-- | crates/profile/src/lib.rs | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/crates/profile/src/lib.rs b/crates/profile/src/lib.rs index fdd724e2aa..38c5b3fc9c 100644 --- a/crates/profile/src/lib.rs +++ b/crates/profile/src/lib.rs @@ -2,17 +2,14 @@ #![warn(rust_2018_idioms, unused_lifetimes)] -mod stop_watch; -mod memory_usage; #[cfg(feature = "cpu_profiler")] mod google_cpu_profiler; -mod hprof; -mod tree; +mod memory_usage; +mod stop_watch; use std::cell::RefCell; pub use crate::{ - hprof::{heartbeat, heartbeat_span, init, init_from, span}, memory_usage::{Bytes, MemoryUsage}, stop_watch::{StopWatch, StopWatchSpan}, }; |