diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 12:18:32 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 12:18:32 +0000 |
commit | 4547b622d8d29df964fa2914213088b148c498fc (patch) | |
tree | 9fc6b25f3c3add6b745be9a2400a6e96140046e9 /vendor/cc/Cargo.toml | |
parent | Releasing progress-linux version 1.66.0+dfsg1-1~progress7.99u1. (diff) | |
download | rustc-4547b622d8d29df964fa2914213088b148c498fc.tar.xz rustc-4547b622d8d29df964fa2914213088b148c498fc.zip |
Merging upstream version 1.67.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/cc/Cargo.toml')
-rw-r--r-- | vendor/cc/Cargo.toml | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/vendor/cc/Cargo.toml b/vendor/cc/Cargo.toml index ad0ec2138..7be741e1e 100644 --- a/vendor/cc/Cargo.toml +++ b/vendor/cc/Cargo.toml @@ -12,20 +12,26 @@ [package] edition = "2018" name = "cc" -version = "1.0.73" +version = "1.0.76" authors = ["Alex Crichton <alex@alexcrichton.com>"] -exclude = ["/.github", "/.travis.yml", "/appveyor.yml"] -description = "A build-time dependency for Cargo build scripts to assist in invoking the native\nC compiler to compile native C code into a static archive to be linked into Rust\ncode.\n" -homepage = "https://github.com/alexcrichton/cc-rs" +exclude = ["/.github"] +description = """ +A build-time dependency for Cargo build scripts to assist in invoking the native +C compiler to compile native C code into a static archive to be linked into Rust +code. +""" +homepage = "https://github.com/rust-lang/cc-rs" documentation = "https://docs.rs/cc" readme = "README.md" keywords = ["build-dependencies"] categories = ["development-tools::build-utils"] -license = "MIT/Apache-2.0" -repository = "https://github.com/alexcrichton/cc-rs" +license = "MIT OR Apache-2.0" +repository = "https://github.com/rust-lang/cc-rs" + [dependencies.jobserver] version = "0.1.16" optional = true + [dev-dependencies.tempfile] version = "3" |