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