summary refs log tree commit diff
path: root/src/libstd/lib.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-03-27 10:08:40 -0700
committerAlex Crichton <alex@alexcrichton.com>2015-03-27 10:08:40 -0700
commit956c2eb257a4ac69371144e64be3e8c7cce8cb07 (patch)
tree10ff68950ad7982fdc0a77a82f979234fbd0f1a8 /src/libstd/lib.rs
parent169231dc83b3078fd19d193ff422628f03e20a44 (diff)
parent36ef29abf7fa14dc9361d6b30ff7f8d18bfb4157 (diff)
downloadrust-956c2eb257a4ac69371144e64be3e8c7cce8cb07.tar.gz
rust-956c2eb257a4ac69371144e64be3e8c7cce8cb07.zip
rollup merge of #23738: alexcrichton/snapshots
Conflicts:
	src/libcollections/vec.rs
Diffstat (limited to 'src/libstd/lib.rs')
-rw-r--r--src/libstd/lib.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs
index dab270e3582..c50326d5e9e 100644
--- a/src/libstd/lib.rs
+++ b/src/libstd/lib.rs
@@ -147,9 +147,9 @@ extern crate core;
 
 #[macro_use]
 #[macro_reexport(vec, format)]
-extern crate "collections" as core_collections;
+extern crate collections as core_collections;
 
-#[allow(deprecated)] extern crate "rand" as core_rand;
+#[allow(deprecated)] extern crate rand as core_rand;
 extern crate alloc;
 extern crate unicode;
 extern crate libc;
@@ -157,7 +157,7 @@ extern crate libc;
 #[macro_use] #[no_link] extern crate rustc_bitflags;
 
 // Make std testable by not duplicating lang items. See #2912
-#[cfg(test)] extern crate "std" as realstd;
+#[cfg(test)] extern crate std as realstd;
 #[cfg(test)] pub use realstd::marker;
 #[cfg(test)] pub use realstd::ops;
 #[cfg(test)] pub use realstd::cmp;