about summary refs log tree commit diff
path: root/src/librustc_data_structures/lib.rs
diff options
context:
space:
mode:
authorMark Rousskov <mark.simulacrum@gmail.com>2018-08-03 18:34:23 -0600
committerMark Rousskov <mark.simulacrum@gmail.com>2018-08-09 10:00:25 -0600
commitbd6fe1e7007c110d3afa46a2c0df14eb07df372e (patch)
tree3f4fa4272d43d638abe209ac6074b5e0c515518f /src/librustc_data_structures/lib.rs
parentac4439c5b6494963bfbee36e34668f844e703015 (diff)
downloadrust-bd6fe1e7007c110d3afa46a2c0df14eb07df372e.tar.gz
rust-bd6fe1e7007c110d3afa46a2c0df14eb07df372e.zip
Move Fingerprint to data structures
Diffstat (limited to 'src/librustc_data_structures/lib.rs')
-rw-r--r--src/librustc_data_structures/lib.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/librustc_data_structures/lib.rs b/src/librustc_data_structures/lib.rs
index b8c21afc386..3aa15f472a2 100644
--- a/src/librustc_data_structures/lib.rs
+++ b/src/librustc_data_structures/lib.rs
@@ -73,13 +73,14 @@ pub mod small_vec;
 pub mod snapshot_map;
 pub use ena::snapshot_vec;
 pub mod sorted_map;
-pub mod stable_hasher;
+#[macro_use] pub mod stable_hasher;
 pub mod sync;
 pub mod tiny_list;
 pub mod transitive_relation;
 pub mod tuple_slice;
 pub use ena::unify;
 pub mod work_queue;
+pub mod fingerprint;
 
 pub struct OnDrop<F: Fn()>(pub F);