1[package]
2name = "cpp_build"
3version = "0.5.9"
4authors = ["Nika Layzell <nika@thelayzells.com>", "Olivier Goffart <olivier.goffart@slint-ui.com>"]
5edition = "2018"
6description = "Cargo build script for the `cpp` crate"
7readme = "../README.md"
8license = "MIT/Apache-2.0"
9keywords = ["c", "cxx", "ffi", "compiler", "build-dependencies"]
10categories = ["development-tools::ffi"]
11repository = "https://github.com/mystor/rust-cpp"
12documentation = "https://docs.rs/cpp_build"
13
14[features]
15# Ignore compilations error of the C++ code when building the documentation, as the docs.rs server
16# might not have the required libraries
17docs-only = []
18parallel = ["cc/parallel"]
19
20[dependencies]
21lazy_static = "1.0"
22cc = "1.0.38"
23cpp_common = { path = "../cpp_common", version = "=0.5.9" }
24syn = { version = "2.0", features=["full", "visit"] }
25proc-macro2 = "1.0"
26regex = "1"
27unicode-xid = "0.2"
28
29[package.metadata.docs.rs]
30features = [ "docs-only" ]
31