1[package]
2name = "cxx-build"
3version = "1.0.119"
4authors = ["David Tolnay <[email protected]>"]
5categories = ["development-tools::build-utils", "development-tools::ffi"]
6description = "C++ code generator for integrating `cxx` crate into a Cargo build."
7documentation = "https://docs.rs/cxx-build"
8edition = "2021"
9exclude = ["build.rs"]
10homepage = "https://cxx.rs"
11keywords = ["ffi", "build-dependencies"]
12license = "MIT OR Apache-2.0"
13repository = "https://github.com/dtolnay/cxx"
14rust-version = "1.60"
15
16[features]
17parallel = ["cc/parallel"]
18# incomplete features that are not covered by a compatibility guarantee:
19experimental-async-fn = []
20
21[dependencies]
22cc = "1.0.83"
23codespan-reporting = "0.11.1"
24once_cell = "1.18"
25proc-macro2 = { version = "1.0.74", default-features = false, features = ["span-locations"] }
26quote = { version = "1.0.35", default-features = false }
27scratch = "1.0.5"
28syn = { version = "2.0.46", default-features = false, features = ["clone-impls", "full", "parsing", "printing"] }
29
30[dev-dependencies]
31cxx = { version = "1.0", path = "../.." }
32cxx-gen = { version = "0.7", path = "../lib" }
33pkg-config = "0.3.27"
34
35[lib]
36doc-scrape-examples = false
37
38[package.metadata.docs.rs]
39targets = ["x86_64-unknown-linux-gnu"]
40rustdoc-args = ["--generate-link-to-definition"]
41