1[package] 2name = "cxx-gen" 3version = "0.7.91" 4authors = ["Adrian Taylor <adetaylor@chromium.org>"] 5categories = ["development-tools::ffi"] 6description = "C++ code generator for integrating `cxx` crate into higher level tools." 7edition = "2018" 8exclude = ["build.rs"] 9keywords = ["ffi"] 10license = "MIT OR Apache-2.0" 11repository = "https://github.com/dtolnay/cxx" 12rust-version = "1.60" 13 14[dependencies] 15codespan-reporting = "0.11" 16proc-macro2 = { version = "1.0.39", default-features = false, features = ["span-locations"] } 17quote = { version = "1.0", default-features = false } 18syn = { version = "1.0.95", default-features = false, features = ["parsing", "printing", "clone-impls", "full"] } 19 20[lib] 21doc-scrape-examples = false 22 23[package.metadata.docs.rs] 24targets = ["x86_64-unknown-linux-gnu"] 25