Skip to content

Commit f45fe94

Browse files
committedFeb 21, 2021
Add license metadata for std dependencies
1 parent 3e826bb commit f45fe94

File tree

5 files changed

+14
-0
lines changed

5 files changed

+14
-0
lines changed
 

‎library/alloc/Cargo.toml

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
authors = ["The Rust Project Developers"]
33
name = "alloc"
44
version = "0.0.0"
5+
license = "MIT OR Apache-2.0"
6+
repository = "https://github.com/rust-lang/rust.git"
7+
description = "The Rust core allocation and collections library"
58
autotests = false
69
autobenches = false
710
edition = "2018"

‎library/core/Cargo.toml

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
authors = ["The Rust Project Developers"]
33
name = "core"
44
version = "0.0.0"
5+
license = "MIT OR Apache-2.0"
6+
repository = "https://github.com/rust-lang/rust.git"
7+
description = "The Rust Core Library"
58
autotests = false
69
autobenches = false
710
edition = "2018"

‎library/panic_abort/Cargo.toml

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
authors = ["The Rust Project Developers"]
33
name = "panic_abort"
44
version = "0.0.0"
5+
license = "MIT OR Apache-2.0"
6+
repository = "https://github.com/rust-lang/rust.git"
7+
description = "Implementation of Rust panics via process aborts"
58
edition = "2018"
69

710
[lib]

‎library/panic_unwind/Cargo.toml

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
authors = ["The Rust Project Developers"]
33
name = "panic_unwind"
44
version = "0.0.0"
5+
license = "MIT OR Apache-2.0"
6+
repository = "https://github.com/rust-lang/rust.git"
7+
description = "Implementation of Rust panics via stack unwinding"
58
edition = "2018"
69

710
[lib]

‎library/unwind/Cargo.toml

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
authors = ["The Rust Project Developers"]
33
name = "unwind"
44
version = "0.0.0"
5+
license = "MIT OR Apache-2.0"
6+
repository = "https://github.com/rust-lang/rust.git"
57
edition = "2018"
68
include = [
79
'/libunwind/*',

0 commit comments

Comments
 (0)
Please sign in to comment.