Add crate_type attributes to rustc, std, core

This commit is contained in:
Brian Anderson 2011-12-08 21:08:23 -08:00
parent 9116a6d9b1
commit 4f17131855
3 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@
#[desc = "The Rust compiler"];
#[license = "BSD"];
#[crate_type = "bin"];
use std (name = "std",
vers = "0.1",

View File

@ -5,7 +5,7 @@
#[comment = "The Rust core library"];
#[license = "BSD"];
#[crate_type = "lib"];
// Local Variables:
// mode: rust;

View File

@ -5,7 +5,7 @@
#[comment = "The Rust standard library"];
#[license = "BSD"];
#[crate_type = "lib"];
export box, char, float, int, str, ptr;
export uint, u8, u32, u64, vec, bool;