]> git.lizzy.rs Git - rust.git/blobdiff - src/librustc_data_structures/lib.rs
Move self-profile infrastructure to data structures
[rust.git] / src / librustc_data_structures / lib.rs
index f7593501959c78c4b8e2bd132fe52b58dda8ab25..fb541637e5f79da6c267ea39fc4b67493ee26e3c 100644 (file)
@@ -68,13 +68,12 @@ macro_rules! unlikely {
 pub mod svh;
 pub mod base_n;
 pub mod binary_search_util;
-pub mod bit_set;
 pub mod box_region;
 pub mod const_cstr;
 pub mod flock;
 pub mod fx;
+pub mod stable_map;
 pub mod graph;
-pub mod indexed_vec;
 pub mod jobserver;
 pub mod obligation_forest;
 pub mod owning_ref;
@@ -84,6 +83,7 @@ macro_rules! unlikely {
 pub mod snapshot_map;
 pub use ena::snapshot_vec;
 pub mod sorted_map;
+pub mod stable_set;
 #[macro_use] pub mod stable_hasher;
 pub mod sync;
 pub mod sharded;
@@ -94,6 +94,7 @@ macro_rules! unlikely {
 pub mod vec_linked_list;
 pub mod work_queue;
 pub mod fingerprint;
+pub mod profiling;
 
 pub struct OnDrop<F: Fn()>(pub F);