Declare MIT license in crate attributes, not BSD

The Rust License is actually the MIT license, not BSD
This commit is contained in:
Brian Anderson 2012-01-08 16:21:43 -08:00
parent 9775b480fd
commit c5564c9bae
3 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@
url = "http://rust-lang.org/src/rustc")];
#[desc = "The Rust compiler"];
#[license = "BSD"];
#[license = "MIT"];
#[crate_type = "bin"];
use std (name = "std",

View File

@ -4,7 +4,7 @@
url = "http://rust-lang.org/src/core")];
#[comment = "The Rust core library"];
#[license = "BSD"];
#[license = "MIT"];
#[crate_type = "lib"];
export box, char, float, bessel, f32, f64, int, str, ptr;

View File

@ -4,7 +4,7 @@
url = "http://rust-lang.org/src/std")];
#[comment = "The Rust standard library"];
#[license = "BSD"];
#[license = "MIT"];
#[crate_type = "lib"];
export comm, fs, io, net, run, uv;