]> git.proxmox.com Git - rustc.git/blob - src/vendor/cc/Cargo.toml.orig
New upstream version 1.23.0+dfsg1
[rustc.git] / src / vendor / cc / Cargo.toml.orig
1 [package]
2
3 name = "cc"
4 version = "1.0.3"
5 authors = ["Alex Crichton <alex@alexcrichton.com>"]
6 license = "MIT/Apache-2.0"
7 repository = "https://github.com/alexcrichton/cc-rs"
8 homepage = "https://github.com/alexcrichton/cc-rs"
9 documentation = "https://docs.rs/cc"
10 description = """
11 A build-time dependency for Cargo build scripts to assist in invoking the native
12 C compiler to compile native C code into a static archive to be linked into Rust
13 code.
14 """
15 keywords = ["build-dependencies"]
16 readme = "README.md"
17 categories = ["development-tools"]
18
19 [badges]
20 travis-ci = { repository = "alexcrichton/cc-rs" }
21 appveyor = { repository = "alexcrichton/cc-rs" }
22
23 [dependencies]
24 rayon = { version = "0.8", optional = true }
25
26 [features]
27 parallel = ["rayon"]
28
29 [dev-dependencies]
30 tempdir = "0.3"