third_party_rust_cxx/Cargo.toml

41 lines
1.0 KiB
TOML
Raw Normal View History

2019-10-20 18:51:12 +00:00
[package]
name = "cxx"
2020-04-09 04:29:14 +00:00
version = "0.2.4" # remember to update html_root_url
2019-10-20 18:51:12 +00:00
authors = ["David Tolnay <dtolnay@gmail.com>"]
edition = "2018"
links = "cxxbridge02"
2019-10-20 18:51:12 +00:00
license = "MIT OR Apache-2.0"
description = "Safe interop between Rust and C++"
repository = "https://github.com/dtolnay/cxx"
documentation = "https://docs.rs/cxx"
readme = "README.md"
exclude = ["/demo-cxx", "/gen", "/syntax", "/third-party"]
2019-10-20 18:51:12 +00:00
[badges]
travis-ci = { repository = "dtolnay/cxx" }
[dependencies]
anyhow = "1.0"
cc = "1.0.49"
2020-03-18 21:02:01 +00:00
codespan-reporting = "0.9"
2020-04-09 04:29:14 +00:00
cxxbridge-macro = { version = "=0.2.4", path = "macro" }
link-cplusplus = "1.0"
2019-10-20 18:51:12 +00:00
proc-macro2 = { version = "1.0", features = ["span-locations"] }
quote = "1.0"
syn = { version = "1.0", features = ["full"] }
thiserror = "1.0"
[build-dependencies]
cc = "1.0.49"
[dev-dependencies]
cxx-test-suite = { version = "0", path = "tests/ffi" }
2019-10-20 18:51:12 +00:00
rustversion = "1.0"
trybuild = "1.0.21"
2019-10-20 18:51:12 +00:00
[workspace]
members = ["cmd", "demo-rs", "macro", "tests/ffi"]
2020-03-17 20:29:06 +00:00
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]