diff options
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" |