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