[package]
name = "cc"
version = "1.0.106"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang/cc-rs"
homepage = "https://github.com/rust-lang/cc-rs"
documentation = "https://docs.rs/cc"
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.
"""
keywords = ["build-dependencies"]
readme = "README.md"
categories = ["development-tools::build-utils"]
exclude = ["/.github", "tests", "src/bin"]
edition = "2018"
rust-version = "1.67"
[dependencies]
jobserver = { version = "0.1.30", default-features = false, optional = true }
once_cell = { version = "1.19", optional = true }
[target.'cfg(unix)'.dependencies]
libc = { version = "0.2.62", default-features = false, optional = true }
[features]
parallel = ["dep:libc", "dep:jobserver", "dep:once_cell"]
[dev-dependencies]
tempfile = "3"
[workspace]
members = [
"dev-tools/cc-test",
"dev-tools/gen-target-info",
"dev-tools/gen-windows-sys-binding",
]