[package]
edition = "2024"
name = "optative-derive"
version = "0.0.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Procedural macros for the optative reconciler library: #[lifecycle_trace] and #[derive(Ephemeral)]."
readme = "README.md"
keywords = [
"reconciler",
"lifecycle",
"macro",
"derive",
"optative",
]
categories = ["development-tools::procedural-macro-helpers"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/kantord/optative"
[lib]
name = "optative_derive"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "ephemeral"
path = "tests/ephemeral.rs"
[[test]]
name = "lifecycle_trace"
path = "tests/lifecycle_trace.rs"
[dependencies.proc-macro2]
version = "1.0.106"
[dependencies.quote]
version = "1.0.45"
[dependencies.syn]
version = "2.0.117"
features = ["full"]
[dev-dependencies.optative]
version = "0.1.1"
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tracing]
version = "0.1"
[dev-dependencies.tracing-test]
version = "0.2"