Documentation
[dependencies.base64]
version = "0.22.1"

[dependencies.futures-util]
default-features = false
features = ["alloc"]
version = "0.3.31"

[dependencies.neva_macros]
optional = true
version = "0.0.8"

[dependencies.serde]
features = ["derive"]
version = "1.0.219"

[dependencies.serde_json]
version = "1.0.140"

[dependencies.tokio]
features = ["sync", "io-std", "io-util", "rt", "time", "macros"]
version = "1.45.0"

[dependencies.tokio-util]
version = "0.7.15"

[dependencies.tracing]
optional = true
version = "0.1.41"

[dependencies.tracing-subscriber]
features = ["fmt", "json"]
optional = true
version = "0.3.19"

[dev-dependencies.tokio]
features = ["rt", "rt-multi-thread", "macros"]
version = "1.45.0"

[features]
client = ["dep:windows", "dep:nix", "tokio/process", "tokio/signal"]
client-full = ["client", "tracing"]
default = []
full = ["macros", "tracing", "server", "client"]
macros = ["dep:neva_macros"]
server = []
server-full = ["server", "macros", "tracing"]
tracing = ["dep:tracing", "dep:tracing-subscriber"]

[lib]
name = "neva"
path = "src/lib.rs"

[package]
authors = ["Roman Emreis <roman.emreis@outlook.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["web-programming::http-server"]
description = "MCP SDK for Rust"
documentation = "https://docs.rs/neva"
edition = "2021"
keywords = ["neva", "mcp", "server", "ai", "framework"]
license = "MIT"
name = "neva"
readme = "README.md"
repository = "https://github.com/RomanEmreis/neva"
rust-version = "1.85.0"
version = "0.0.8"

[package.metadata.docs.rs]
all-features = true

[target.'cfg(target_os = "linux")'.dependencies.nix]
features = ["signal"]
optional = true
version = "0.30.0"

[target.'cfg(target_os = "windows")'.dependencies.windows]
features = ["Win32_Foundation", "Win32_System_JobObjects", "Win32_System_Threading", "Win32_Security", "Win32_System_Diagnostics", "Win32_System_Diagnostics_ToolHelp"]
optional = true
version = "0.61.1"