[package]
edition = "2024"
name = "elicitation_macros"
version = "0.10.0"
authors = ["Erik Rose <erik.w.rose@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Procedural macros for MCP tool generation, tracing instrumentation, and newtype wrapping in the elicitation framework"
homepage = "https://github.com/crumplecup/elicitation"
documentation = "https://docs.rs/elicitation"
readme = "README.md"
keywords = [
"macros",
"elicitation",
"mcp",
"procedural",
"codegen",
]
categories = ["development-tools::procedural-macro-helpers"]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/crumplecup/elicitation"
resolver = "2"
[lib]
name = "elicitation_macros"
path = "src/lib.rs"
proc-macro = true
[dependencies.proc-macro2]
version = "1"
[dependencies.quote]
version = "1"
[dependencies.syn]
version = "2"
features = [
"full",
"extra-traits",
]
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = [
"cfg(kani)",
"cfg(creusot)",
"cfg(prusti)",
"cfg(verus)",
]