summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-07-12 23:31:33 +0000
committerbors <bors@rust-lang.org>2014-07-12 23:31:33 +0000
commitf606234b70ac6691032cb1cba80cbdd8abe39ec7 (patch)
treefd5256ac045408a3abffd2bdcdda988dabce4235 /src/libstd
parente178ebf681d532c1c965883ae34788713f748960 (diff)
parent9321fe7a7b713dfaaaea92db3f0a7bd7eea38e11 (diff)
downloadrust-f606234b70ac6691032cb1cba80cbdd8abe39ec7.tar.gz
rust-f606234b70ac6691032cb1cba80cbdd8abe39ec7.zip
auto merge of #15617 : aturon/rust/std-more-experimental, r=alexcrichton
The `hash` module was not included in an earlier pass that sets baseline
stability of modules within `std` to `experimental`.
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/hash.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libstd/hash.rs b/src/libstd/hash.rs
index 2cc7e70747a..55d1411d77e 100644
--- a/src/libstd/hash.rs
+++ b/src/libstd/hash.rs
@@ -61,6 +61,8 @@
  * ```
  */
 
+#![experimental]
+
 pub use core_collections::hash::{Hash, Hasher, Writer, hash, sip};
 
 use default::Default;