1[package]
2name = "cxxbridge-cmd"
3version = "1.0.119"
4authors = ["David Tolnay <[email protected]>"]
5categories = ["development-tools::build-utils", "development-tools::ffi"]
6description = "C++ code generator for integrating `cxx` crate into a non-Cargo build."
7edition = "2021"
8exclude = ["build.rs"]
9homepage = "https://cxx.rs"
10keywords = ["ffi"]
11license = "MIT OR Apache-2.0"
12repository = "https://github.com/dtolnay/cxx"
13rust-version = "1.56"
14
15[[bin]]
16name = "cxxbridge"
17path = "src/main.rs"
18
19[features]
20# incomplete features that are not covered by a compatibility guarantee:
21experimental-async-fn = []
22
23[dependencies]
24clap = { version = "4.3.11", default-features = false, features = ["error-context", "help", "std", "suggestions", "usage"] }
25codespan-reporting = "0.11.1"
26proc-macro2 = { version = "1.0.74", default-features = false, features = ["span-locations"] }
27quote = { version = "1.0.35", default-features = false }
28syn = { version = "2.0.46", default-features = false, features = ["clone-impls", "full", "parsing", "printing"] }
29
30[package.metadata.docs.rs]
31targets = ["x86_64-unknown-linux-gnu"]
32