[package]
edition = "2021"
name = "weaveffi-macros"
version = "0.17.0"
authors = ["WeaveFFI Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Procedural macros that turn safe annotated Rust into WeaveFFI C ABI scaffolding"
readme = false
keywords = [
"ffi",
"proc-macro",
"codegen",
"bindings",
"weaveffi",
]
categories = ["development-tools::ffi"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/weavefoundry/weaveffi"
[lib]
name = "weaveffi_macros"
path = "src/lib.rs"
proc-macro = true
[dependencies.proc-macro2]
version = "1.0"
[dependencies.quote]
version = "1.0"
[dependencies.syn]
version = "2.0"
features = [
"full",
"parsing",
"visit",
]
[dependencies.weaveffi-bridge]
version = "0.17.0"
[dependencies.weaveffi-core]
version = "0.17.0"
[dependencies.weaveffi-ir]
version = "0.17.0"
[lints.rust]
unsafe_code = "deny"