1[package] 2name = "cxx-gen" 3version = "0.7.119" 4authors = ["Adrian Taylor <[email protected]>"] 5categories = ["development-tools::ffi"] 6description = "C++ code generator for integrating `cxx` crate into higher level tools." 7documentation = "https://docs.rs/cxx-gen" 8edition = "2021" 9exclude = ["build.rs"] 10keywords = ["ffi"] 11license = "MIT OR Apache-2.0" 12repository = "https://github.com/dtolnay/cxx" 13rust-version = "1.60" 14 15[dependencies] 16codespan-reporting = "0.11.1" 17proc-macro2 = { version = "1.0.74", default-features = false, features = ["span-locations"] } 18quote = { version = "1.0.35", default-features = false } 19syn = { version = "2.0.46", default-features = false, features = ["clone-impls", "full", "parsing", "printing"] } 20 21[lib] 22doc-scrape-examples = false 23 24[package.metadata.docs.rs] 25targets = ["x86_64-unknown-linux-gnu"] 26rustdoc-args = ["--generate-link-to-definition"] 27