From ea103ef57f16bda277324b6f01ab0d13398fdee5 Mon Sep 17 00:00:00 2001 From: Doug Goldstein Date: Tue, 31 Oct 2017 14:49:29 -0500 Subject: [PATCH 1/3] add license data to libstd Include the license of libstd in the cargo metadata --- src/libstd/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libstd/Cargo.toml b/src/libstd/Cargo.toml index 5dd5f8953a00e..c487cd82e4678 100644 --- a/src/libstd/Cargo.toml +++ b/src/libstd/Cargo.toml @@ -3,6 +3,7 @@ authors = ["The Rust Project Developers"] name = "std" version = "0.0.0" build = "build.rs" +license = "MIT/Apache-2.0" [lib] name = "std" From 4519192d4f1b72210e6e687d59fdd88229428890 Mon Sep 17 00:00:00 2001 From: Doug Goldstein Date: Tue, 31 Oct 2017 14:57:27 -0500 Subject: [PATCH 2/3] add repository info to libstd Include the repository info for libstd in the Cargo metadata. --- src/libstd/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libstd/Cargo.toml b/src/libstd/Cargo.toml index c487cd82e4678..a1a4502989284 100644 --- a/src/libstd/Cargo.toml +++ b/src/libstd/Cargo.toml @@ -4,6 +4,7 @@ name = "std" version = "0.0.0" build = "build.rs" license = "MIT/Apache-2.0" +repository = "https://github.com/rust-lang/rust.git" [lib] name = "std" From 86c09f3a450acaaa4f6326ce64b1d5936310d16f Mon Sep 17 00:00:00 2001 From: Doug Goldstein Date: Tue, 31 Oct 2017 15:10:10 -0500 Subject: [PATCH 3/3] add description to libstd Include a description field for libstd in Cargo metadata. --- src/libstd/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libstd/Cargo.toml b/src/libstd/Cargo.toml index a1a4502989284..d239b79d4ba7a 100644 --- a/src/libstd/Cargo.toml +++ b/src/libstd/Cargo.toml @@ -5,6 +5,7 @@ version = "0.0.0" build = "build.rs" license = "MIT/Apache-2.0" repository = "https://github.com/rust-lang/rust.git" +description = "The Rust Standard Library" [lib] name = "std"