• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "cxxbridge-cmd"
3version = "1.0.85"
4authors = ["David Tolnay <dtolnay@gmail.com>"]
5categories = ["development-tools::build-utils", "development-tools::ffi"]
6description = "C++ code generator for integrating `cxx` crate into a non-Cargo build."
7edition = "2018"
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", default-features = false, features = ["error-context", "help", "std", "suggestions", "usage"] }
25codespan-reporting = "0.11"
26proc-macro2 = { version = "1.0.39", default-features = false, features = ["span-locations"] }
27quote = { version = "1.0", default-features = false }
28syn = { version = "1.0.95", default-features = false, features = ["parsing", "printing", "clone-impls", "full"] }
29
30[package.metadata.docs.rs]
31targets = ["x86_64-unknown-linux-gnu"]
32