[package]
edition = "2024"
name = "elicitation_derive"
version = "0.6.4"
authors = ["crumplecup"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Derive macros for elicitation library"
homepage = "https://github.com/crumplecup/elicitation"
documentation = "https://docs.rs/elicitation"
readme = "README.md"
keywords = [
"mcp",
"derive",
"macro",
"elicitation",
"procedural",
]
categories = ["development-tools::procedural-macro-helpers"]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/crumplecup/elicitation"
resolver = "2"
[lib]
name = "elicitation_derive"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "enum_derive_test"
path = "tests/enum_derive_test.rs"
[[test]]
name = "struct_derive_test"
path = "tests/struct_derive_test.rs"
[dependencies.proc-macro2]
version = "1"
[dependencies.quote]
version = "1"
[dependencies.syn]
version = "2"
features = [
"full",
"extra-traits",
]
[dev-dependencies.rmcp]
version = "0.14"
features = [
"client",
"transport-io",
"schemars",
"elicitation",
]
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tracing]
version = "0.1"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = [
"cfg(kani)",
"cfg(creusot)",
"cfg(prusti)",
"cfg(verus)",
]