* feat: add local feature for !Send tool handler support * fix: gate streamable HTTP transport on not(local) feature
27 lines
542 B
TOML
27 lines
542 B
TOML
|
|
|
|
[package]
|
|
name = "rmcp-macros"
|
|
license = { workspace = true }
|
|
version = { workspace = true }
|
|
edition = { workspace = true }
|
|
repository = { workspace = true }
|
|
homepage = { workspace = true }
|
|
readme = { workspace = true }
|
|
description = "Rust SDK for Model Context Protocol macros library"
|
|
documentation = "https://docs.rs/rmcp-macros"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
syn = {version = "2", features = ["full"]}
|
|
quote = "1"
|
|
proc-macro2 = "1"
|
|
serde_json = "1.0"
|
|
darling = { version = "0.23" }
|
|
|
|
[features]
|
|
local = []
|
|
|
|
[dev-dependencies]
|