2019-10-20 18:51:12 +00:00
|
|
|
[package]
|
|
|
|
name = "cxxbridge-macro"
|
2020-11-16 17:26:08 +00:00
|
|
|
version = "0.5.10"
|
2019-10-20 18:51:12 +00:00
|
|
|
authors = ["David Tolnay <dtolnay@gmail.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
description = "Implementation detail of the `cxx` crate."
|
|
|
|
repository = "https://github.com/dtolnay/cxx"
|
2020-11-17 16:35:27 +00:00
|
|
|
homepage = "https://cxx.rs"
|
2020-09-11 17:44:07 +00:00
|
|
|
exclude = ["build.rs", "README.md"]
|
2020-05-11 03:16:28 +00:00
|
|
|
keywords = ["ffi"]
|
|
|
|
categories = ["development-tools::ffi"]
|
2019-10-20 18:51:12 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
proc-macro2 = "1.0"
|
2020-05-04 09:33:59 +00:00
|
|
|
quote = "1.0.4"
|
2020-05-12 03:05:48 +00:00
|
|
|
syn = { version = "1.0.20", features = ["full"] }
|
2019-10-20 18:51:12 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-10-09 01:18:12 +00:00
|
|
|
cxx = { version = "0.5", path = ".." }
|
2020-03-17 20:29:06 +00:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
targets = ["x86_64-unknown-linux-gnu"]
|