1[package]
2name = "cpp_macros"
3version = "0.5.9"
4authors = ["Nika Layzell <nika@thelayzells.com>", "Olivier Goffart <olivier.goffart@slint-ui.com>"]
5edition = "2018"
6description = "Procedural macro implementation for the `cpp` crate"
7readme = "../README.md"
8license = "MIT/Apache-2.0"
9keywords = ["c", "cxx", "ffi", "compiler"]
10categories = ["development-tools::ffi"]
11repository = "https://github.com/mystor/rust-cpp"
12documentation = "https://docs.rs/cpp_macros"
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 = []
18
19[lib]
20proc-macro = true
21
22[dependencies]
23lazy_static = "1.0"
24cpp_common = { path = "../cpp_common", version = "=0.5.9" }
25syn = { version = "2.0", features=["full", "visit"] }
26quote = "1.0"
27proc-macro2 = "1.0"
28aho-corasick = "1.0"
29byteorder = "1.0"
30
31[package.metadata.docs.rs]
32features = [ "docs-only" ]
33