• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "cxxbridge-macro"
3version = "1.0.54"
4authors = ["David Tolnay <dtolnay@gmail.com>"]
5edition = "2018"
6license = "MIT OR Apache-2.0"
7description = "Implementation detail of the `cxx` crate."
8repository = "https://github.com/dtolnay/cxx"
9homepage = "https://cxx.rs"
10exclude = ["build.rs", "README.md"]
11keywords = ["ffi"]
12categories = ["development-tools::ffi"]
13
14[lib]
15proc-macro = true
16
17[features]
18experimental = ["clang-ast", "flate2", "memmap", "serde", "serde_json"]
19
20[dependencies]
21proc-macro2 = "1.0"
22quote = "1.0.4"
23syn = { version = "1.0.70", features = ["full"] }
24
25# optional dependencies
26clang-ast = { version = "0.1", optional = true }
27flate2 = { version = "1.0", optional = true }
28memmap = { version = "0.7", optional = true }
29serde = { version = "1.0", optional = true, features = ["derive"] }
30serde_json = { version = "1.0", optional = true }
31
32[dev-dependencies]
33cxx = { version = "1.0", path = ".." }
34
35[package.metadata.docs.rs]
36targets = ["x86_64-unknown-linux-gnu"]
37