1
Fork 0

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")]; url = "http://rust-lang.org/src/rustc")];
#[desc = "The Rust compiler"]; #[desc = "The Rust compiler"];
#[license = "BSD"]; #[license = "MIT"];
#[crate_type = "bin"]; #[crate_type = "bin"];
use std (name = "std", use std (name = "std",

View file

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

View file

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