diff options
| author | Charles E. Lehner <charles.lehner@spruceid.com> | 2021-02-20 13:18:01 -0500 |
|---|---|---|
| committer | Charles E. Lehner <charles.lehner@spruceid.com> | 2021-02-21 13:36:18 -0500 |
| commit | f45fe9493ba06cd57fc2f7317a39305f79a1a6e6 (patch) | |
| tree | ccf95d415446c4ea5e6585768969c919fb6d3979 | |
| parent | 3e826bb11228508fbe749e594038d6727208aa94 (diff) | |
| download | rust-f45fe9493ba06cd57fc2f7317a39305f79a1a6e6.tar.gz rust-f45fe9493ba06cd57fc2f7317a39305f79a1a6e6.zip | |
Add license metadata for std dependencies
| -rw-r--r-- | library/alloc/Cargo.toml | 3 | ||||
| -rw-r--r-- | library/core/Cargo.toml | 3 | ||||
| -rw-r--r-- | library/panic_abort/Cargo.toml | 3 | ||||
| -rw-r--r-- | library/panic_unwind/Cargo.toml | 3 | ||||
| -rw-r--r-- | library/unwind/Cargo.toml | 2 |
5 files changed, 14 insertions, 0 deletions
diff --git a/library/alloc/Cargo.toml b/library/alloc/Cargo.toml index d95b5b7f17f..4f97c95bcb9 100644 --- a/library/alloc/Cargo.toml +++ b/library/alloc/Cargo.toml @@ -2,6 +2,9 @@ authors = ["The Rust Project Developers"] name = "alloc" version = "0.0.0" +license = "MIT OR Apache-2.0" +repository = "https://github.com/rust-lang/rust.git" +description = "The Rust core allocation and collections library" autotests = false autobenches = false edition = "2018" diff --git a/library/core/Cargo.toml b/library/core/Cargo.toml index c1596012eac..4a7dbb91822 100644 --- a/library/core/Cargo.toml +++ b/library/core/Cargo.toml @@ -2,6 +2,9 @@ authors = ["The Rust Project Developers"] name = "core" version = "0.0.0" +license = "MIT OR Apache-2.0" +repository = "https://github.com/rust-lang/rust.git" +description = "The Rust Core Library" autotests = false autobenches = false edition = "2018" diff --git a/library/panic_abort/Cargo.toml b/library/panic_abort/Cargo.toml index b15919fad75..caa89aa30d0 100644 --- a/library/panic_abort/Cargo.toml +++ b/library/panic_abort/Cargo.toml @@ -2,6 +2,9 @@ authors = ["The Rust Project Developers"] name = "panic_abort" version = "0.0.0" +license = "MIT OR Apache-2.0" +repository = "https://github.com/rust-lang/rust.git" +description = "Implementation of Rust panics via process aborts" edition = "2018" [lib] diff --git a/library/panic_unwind/Cargo.toml b/library/panic_unwind/Cargo.toml index d27ba987641..533f059a85e 100644 --- a/library/panic_unwind/Cargo.toml +++ b/library/panic_unwind/Cargo.toml @@ -2,6 +2,9 @@ authors = ["The Rust Project Developers"] name = "panic_unwind" version = "0.0.0" +license = "MIT OR Apache-2.0" +repository = "https://github.com/rust-lang/rust.git" +description = "Implementation of Rust panics via stack unwinding" edition = "2018" [lib] diff --git a/library/unwind/Cargo.toml b/library/unwind/Cargo.toml index 4f7a304a59f..69128591e06 100644 --- a/library/unwind/Cargo.toml +++ b/library/unwind/Cargo.toml @@ -2,6 +2,8 @@ authors = ["The Rust Project Developers"] name = "unwind" version = "0.0.0" +license = "MIT OR Apache-2.0" +repository = "https://github.com/rust-lang/rust.git" edition = "2018" include = [ '/libunwind/*', |
