aboutsummaryrefslogtreecommitdiff
path: root/crates/profile/src/lib.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2021-03-29 19:08:07 +0100
committerAleksey Kladov <[email protected]>2021-03-29 19:38:23 +0100
commit483a5bc9c850f3144cfbdf51a272bbcadbdc5934 (patch)
treeecf33d017c79e31a13b082e676a8fdcbebd85267 /crates/profile/src/lib.rs
parent2381a54c2f6ff1d97b9d6cb982dde5644f09a396 (diff)
internal: track missing `.check_cancelled`
Diffstat (limited to 'crates/profile/src/lib.rs')
-rw-r--r--crates/profile/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/profile/src/lib.rs b/crates/profile/src/lib.rs
index 79dba47d5..9ca6341db 100644
--- a/crates/profile/src/lib.rs
+++ b/crates/profile/src/lib.rs
@@ -10,7 +10,7 @@ mod tree;
10use std::cell::RefCell; 10use std::cell::RefCell;
11 11
12pub use crate::{ 12pub use crate::{
13 hprof::{init, init_from, span}, 13 hprof::{heartbeat, heartbeat_span, init, init_from, span},
14 memory_usage::{Bytes, MemoryUsage}, 14 memory_usage::{Bytes, MemoryUsage},
15 stop_watch::{StopWatch, StopWatchSpan}, 15 stop_watch::{StopWatch, StopWatchSpan},
16}; 16};