• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "cxx-build"
3version = "1.0.42"
4authors = ["David Tolnay <dtolnay@gmail.com>"]
5edition = "2018"
6license = "MIT OR Apache-2.0"
7description = "C++ code generator for integrating `cxx` crate into a Cargo build."
8repository = "https://github.com/dtolnay/cxx"
9homepage = "https://cxx.rs"
10exclude = ["build.rs"]
11keywords = ["ffi"]
12categories = ["development-tools::ffi"]
13
14[features]
15parallel = ["cc/parallel"]
16
17[dependencies]
18cc = "1.0.49"
19codespan-reporting = "0.11"
20lazy_static = "1.4"
21proc-macro2 = { version = "1.0.26", default-features = false, features = ["span-locations"] }
22quote = { version = "1.0", default-features = false }
23scratch = "1.0"
24syn = { version = "1.0.68", default-features = false, features = ["parsing", "printing", "clone-impls", "full"] }
25
26[dev-dependencies]
27cxx-gen = { version = "0.7", path = "../lib" }
28pkg-config = "0.3"
29
30[package.metadata.docs.rs]
31targets = ["x86_64-unknown-linux-gnu"]
32