about summary refs log tree commit diff
path: root/src/libstd/lib.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2013-11-30 16:38:07 -0800
committerAlex Crichton <alex@alexcrichton.com>2013-12-03 14:31:54 -0800
commitacc5e32e53d313a890a07cb0b693ce8df5bc94ce (patch)
tree2ac4923981b4e5e96562aa5525eadab1ccf4f834 /src/libstd/lib.rs
parent4252a24ae1236207a99c1d313d4b1b1eda3ebb58 (diff)
downloadrust-acc5e32e53d313a890a07cb0b693ce8df5bc94ce.tar.gz
rust-acc5e32e53d313a890a07cb0b693ce8df5bc94ce.zip
Register new snapshots
Diffstat (limited to 'src/libstd/lib.rs')
-rw-r--r--src/libstd/lib.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs
index 296091d26e6..6fe757976f0 100644
--- a/src/libstd/lib.rs
+++ b/src/libstd/lib.rs
@@ -51,7 +51,6 @@
 
 #[comment = "The Rust standard library"];
 #[license = "MIT/ASL2"];
-#[crate_type = "lib"]; // NOTE: remove after stage0 snapshot
 #[crate_type = "rlib"];
 #[crate_type = "dylib"];
 
@@ -59,14 +58,13 @@
       html_favicon_url = "http://www.rust-lang.org/favicon.ico",
       html_root_url = "http://static.rust-lang.org/doc/master")];
 
-#[feature(macro_rules, globs, asm, managed_boxes, thread_local)];
+#[feature(macro_rules, globs, asm, managed_boxes, thread_local, link_args)];
 
 // Don't link to std. We are std.
 #[no_std];
 
 #[deny(non_camel_case_types)];
 #[deny(missing_doc)];
-#[allow(attribute_usage)]; // NOTE: remove after the next snapshot
 
 // When testing libstd, bring in libuv as the I/O backend so tests can print
 // things and all of the std::io tests have an I/O interface to run on top