mirror of
https://gitee.com/openharmony/third_party_rust_cxx
synced 2024-11-23 07:10:29 +00:00
53 lines
1.5 KiB
TOML
53 lines
1.5 KiB
TOML
[package]
|
|
name = "cxx"
|
|
version = "1.0.91" # remember to update html_root_url
|
|
authors = ["David Tolnay <dtolnay@gmail.com>"]
|
|
categories = ["development-tools::ffi", "api-bindings", "no-std"]
|
|
description = "Safe interop between Rust and C++"
|
|
documentation = "https://docs.rs/cxx"
|
|
edition = "2018"
|
|
exclude = ["/demo", "/gen", "/syntax", "/third-party", "/tools/buck/prelude"]
|
|
homepage = "https://cxx.rs"
|
|
keywords = ["ffi", "c++"]
|
|
license = "MIT OR Apache-2.0"
|
|
links = "cxxbridge1"
|
|
repository = "https://github.com/dtolnay/cxx"
|
|
rust-version = "1.60"
|
|
|
|
[features]
|
|
default = ["std", "cxxbridge-flags/default"] # c++11
|
|
"c++14" = ["cxxbridge-flags/c++14"]
|
|
"c++17" = ["cxxbridge-flags/c++17"]
|
|
"c++20" = ["cxxbridge-flags/c++20"]
|
|
alloc = []
|
|
std = ["alloc"]
|
|
|
|
[dependencies]
|
|
cxxbridge-macro = { version = "=1.0.91", path = "macro" }
|
|
link-cplusplus = "1.0"
|
|
|
|
[build-dependencies]
|
|
cc = "1.0.49"
|
|
cxxbridge-flags = { version = "=1.0.91", path = "flags", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
cxx-build = { version = "=1.0.91", path = "gen/build" }
|
|
cxx-gen = { version = "0.7", path = "gen/lib" }
|
|
cxx-test-suite = { version = "0", path = "tests/ffi" }
|
|
rustversion = "1.0"
|
|
trybuild = { version = "1.0.66", features = ["diff"] }
|
|
|
|
[lib]
|
|
doc-scrape-examples = false
|
|
|
|
[workspace]
|
|
members = ["demo", "flags", "gen/build", "gen/cmd", "gen/lib", "macro", "tests/ffi"]
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
rustdoc-args = ["--cfg", "doc_cfg"]
|
|
|
|
[patch.crates-io]
|
|
cxx = { path = "." }
|
|
cxx-build = { path = "gen/build" }
|