about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-07-01 07:12:04 -0700
committerAlex Crichton <alex@alexcrichton.com>2014-07-05 12:45:42 -0700
commite44c2b9bbcb3ca7a7ca9e987b6727fd011f7b91a (patch)
tree624dc762a18f4ee52f4195e7a788f7c337b46381 /src/libstd
parentc956b70d7bb947e3358739221d2afffc292612cb (diff)
downloadrust-e44c2b9bbcb3ca7a7ca9e987b6727fd011f7b91a.tar.gz
rust-e44c2b9bbcb3ca7a7ca9e987b6727fd011f7b91a.zip
Add #[crate_name] attributes as necessary
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/lib.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs
index 0e6f848fce8..928a1088d0e 100644
--- a/src/libstd/lib.rs
+++ b/src/libstd/lib.rs
@@ -94,7 +94,8 @@
 //! all the standard macros, such as `assert!`, `fail!`, `println!`,
 //! and `format!`, also available to all Rust code.
 
-#![crate_id = "std#0.11.0"]
+#![crate_id = "std#0.11.0"] // NOTE: remove after stage0 snap
+#![crate_name = "std"]
 #![unstable]
 #![comment = "The Rust standard library"]
 #![license = "MIT/ASL2"]
@@ -107,6 +108,7 @@
 
 #![feature(macro_rules, globs, managed_boxes, linkage)]
 #![feature(default_type_params, phase, lang_items, unsafe_destructor)]
+#![allow(unused_attribute)] // NOTE: remove after stage0
 
 // Don't link to std. We are std.
 #![no_std]