[package]
name = "cpp_macros"
version.workspace = true
authors = ["Nika Layzell <nika@thelayzells.com>", "Olivier Goffart <olivier.goffart@slint.dev>"]
edition.workspace = true
rust-version.workspace = true
description = "Procedural macro implementation for the `cpp` crate"
readme = "../README.md"
license.workspace = true
keywords = ["c", "cxx", "ffi", "compiler"]
categories = ["development-tools::ffi"]
repository = "https://github.com/mystor/rust-cpp"
documentation = "https://docs.rs/cpp_macros"
[features]
docs-only = []
[lib]
proc-macro = true
[dependencies]
cpp_common = { path = "../cpp_common", version = "=0.5.11" }
syn = { version = "2.0", features=["full", "visit"] }
quote = "1.0"
proc-macro2 = "1.0"
aho-corasick = "1.0"
byteorder = "1.0"
[package.metadata.docs.rs]
features = [ "docs-only" ]