cxx/Cargo.toml

38 lines
893 B
TOML
Raw Normal View History

2019-10-20 14:51:12 -04:00
[package]
name = "cxx"
2020-01-20 18:53:20 -08:00
version = "0.1.2"
2019-10-20 14:51:12 -04:00
authors = ["David Tolnay <dtolnay@gmail.com>"]
edition = "2018"
2020-01-08 08:46:20 -08:00
links = "cxxbridge01"
2019-10-20 14:51:12 -04: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"
[badges]
travis-ci = { repository = "dtolnay/cxx" }
[dependencies]
anyhow = "1.0"
cc = "1.0.49"
codespan = "0.7"
codespan-reporting = "0.7"
2020-01-20 18:53:20 -08:00
cxxbridge-macro = { version = "=0.1.2", path = "macro" }
link-cplusplus = "1.0"
2019-10-20 14:51:12 -04: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 14:51:12 -04:00
rustversion = "1.0"
trybuild = "1.0.21"
2019-10-20 14:51:12 -04:00
[workspace]
members = ["cmd", "demo-rs", "macro", "tests/ffi"]