agentd-mcp 0.3.0

Model Context Protocol base library: wire types, version/era negotiation, transports
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.96"
name = "agentd-mcp"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Model Context Protocol base library: wire types, version/era negotiation, transports"
readme = "README.md"
keywords = [
    "mcp",
    "json-rpc",
    "agent",
    "llm",
    "protocol",
]
categories = [
    "network-programming",
    "api-bindings",
]
license = "Apache-2.0"
repository = "https://github.com/agentd-dev/source-code"

[features]
default = []
tls = ["net/tls"]
vsock = [
    "net/vsock",
    "dep:vsock",
]

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

[[test]]
name = "inbound_requests"
path = "tests/inbound_requests.rs"

[[test]]
name = "rmcp_backend"
path = "tests/rmcp_backend.rs"

[dependencies.futures]
version = "0.3"
features = ["std"]
default-features = false

[dependencies.http]
version = "1"

[dependencies.net]
version = "0.3.0"
package = "agentd-net"

[dependencies.rmcp]
version = "3.1"
features = [
    "client",
    "client-side-sse",
    "transport-streamable-http-client",
    "elicitation",
]
default-features = false

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

[dependencies.serde_json]
version = "1"

[dependencies.sse-stream]
version = "0.2"

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = [
    "rt",
    "rt-multi-thread",
    "time",
    "sync",
    "macros",
]

[dependencies.tokio-stream]
version = "0.1"

[dependencies.vsock]
version = "0.5"
optional = true