]> git.lizzy.rs Git - rust.git/commitdiff
Declare MIT license in crate attributes, not BSD
authorBrian Anderson <banderson@mozilla.com>
Mon, 9 Jan 2012 00:21:43 +0000 (16:21 -0800)
committerBrian Anderson <banderson@mozilla.com>
Mon, 9 Jan 2012 00:22:55 +0000 (16:22 -0800)
The Rust License is actually the MIT license, not BSD

src/comp/rustc.rc
src/libcore/core.rc
src/libstd/std.rc

index 2738f3e4b82c1960ede212b214ecf6fef91f8e6b..d770243f3528d5b9a25dba0476e14dab7458183a 100644 (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",
index d1732352d9674a08bbafe0655ede35a4d8404935..4035b6e1b44c5924e6b52cd8c85d62b3ae18d3e1 100644 (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;
index 8acb1ac9ef92ec677e92d7b20cf919db37fbf0e4..9599febc3987cf0a3faee626169eb2f547f52d7f 100644 (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;