1[package] 2name = "cxx-build" 3version = "1.0.91" 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." 7documentation = "https://docs.rs/cxx-build" 8edition = "2018" 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.49" 23codespan-reporting = "0.11.1" 24once_cell = "1.9" 25proc-macro2 = { version = "1.0.39", default-features = false, features = ["span-locations"] } 26quote = { version = "1.0", default-features = false } 27scratch = "1.0" 28syn = { version = "1.0.95", default-features = false, features = ["parsing", "printing", "clone-impls", "full"] } 29 30[dev-dependencies] 31cxx = { version = "1.0", path = "../.." } 32cxx-gen = { version = "0.7", path = "../lib" } 33pkg-config = "0.3" 34 35[lib] 36doc-scrape-examples = false 37 38[package.metadata.docs.rs] 39targets = ["x86_64-unknown-linux-gnu"] 40