[package]
edition = "2024"
rust-version = "1.85.0"
name = "contained-macros"
version = "0.2.4"
authors = ["FL03 <joe@pzzld.org> (https://github.com/FL03)"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "procedural macros for managing wrappers"
homepage = "https://github.com/FL03/contained/wiki"
readme = "README.md"
keywords = [
"macros",
"transparent",
"wrapper",
]
categories = []
license = "Apache-2.0"
repository = "https://github.com/FL03/contained.git"
[package.metadata.docs.rs]
all-features = false
features = ["default"]
rustc-args = [
"--cfg",
"docsrs",
]
version = "v{{version}}"
[package.metadata.release]
no-dev-version = true
tag-name = "{{version}}"
[features]
default = []
nightly = ["proc-macro2/nightly"]
[lib]
name = "contained_macros"
path = "src/lib.rs"
test = true
doctest = true
bench = false
doc = true
proc-macro = true
[[test]]
name = "default"
path = "tests/default.rs"
[[test]]
name = "ops"
path = "tests/ops.rs"
[dependencies.proc-macro2]
version = "1"
[dependencies.quote]
version = "1"
[dependencies.syn]
version = "2"
features = ["full"]