Skip to content

Commit c5564c9

Browse files
committed
Declare MIT license in crate attributes, not BSD
The Rust License is actually the MIT license, not BSD
1 parent 9775b48 commit c5564c9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/comp/rustc.rc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
url = "http://rust-lang.org/src/rustc")];
77

88
#[desc = "The Rust compiler"];
9-
#[license = "BSD"];
9+
#[license = "MIT"];
1010
#[crate_type = "bin"];
1111

1212
use std (name = "std",

src/libcore/core.rc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
url = "http://rust-lang.org/src/core")];
55

66
#[comment = "The Rust core library"];
7-
#[license = "BSD"];
7+
#[license = "MIT"];
88
#[crate_type = "lib"];
99

1010
export box, char, float, bessel, f32, f64, int, str, ptr;

src/libstd/std.rc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
url = "http://rust-lang.org/src/std")];
55

66
#[comment = "The Rust standard library"];
7-
#[license = "BSD"];
7+
#[license = "MIT"];
88
#[crate_type = "lib"];
99

1010
export comm, fs, io, net, run, uv;

0 commit comments

Comments
 (0)