1[package] 2name = "cxxbridge-cmd" 3version = "1.0.42" 4authors = ["David Tolnay <dtolnay@gmail.com>"] 5edition = "2018" 6license = "MIT OR Apache-2.0" 7description = "C++ code generator for integrating `cxx` crate into a non-Cargo build." 8repository = "https://github.com/dtolnay/cxx" 9homepage = "https://cxx.rs" 10exclude = ["build.rs"] 11keywords = ["ffi"] 12categories = ["development-tools::ffi"] 13 14[[bin]] 15name = "cxxbridge" 16path = "src/main.rs" 17 18[dependencies] 19clap = "2.33" 20codespan-reporting = "0.11" 21proc-macro2 = { version = "1.0.26", default-features = false, features = ["span-locations"] } 22quote = { version = "1.0", default-features = false } 23syn = { version = "1.0.68", default-features = false, features = ["parsing", "printing", "clone-impls", "full"] } 24 25[package.metadata.docs.rs] 26targets = ["x86_64-unknown-linux-gnu"] 27