[package]
edition = "2021"
name = "modeldriveprotocol-client"
version = "2.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust client SDK for Model Drive Protocol."
homepage = "https://github.com/modeldriveprotocol/modeldriveprotocol"
readme = "README.md"
keywords = [
"mdp",
"mcp",
"client",
"sdk",
"model-drive-protocol",
]
categories = [
"api-bindings",
"network-programming",
]
license = "MIT"
repository = "https://github.com/modeldriveprotocol/modeldriveprotocol"
[lib]
name = "modeldriveprotocol_client"
path = "src/lib.rs"
[[test]]
name = "client"
path = "tests/client.rs"
[[test]]
name = "registry"
path = "tests/registry.rs"
[dependencies.async-trait]
version = "0.1.89"
[dependencies.futures-util]
version = "0.3.31"
features = [
"sink",
"std",
]
default-features = false
[dependencies.http]
version = "1.3.1"
[dependencies.once_cell]
version = "1.21.3"
[dependencies.regex]
version = "1.12.2"
[dependencies.reqwest]
version = "0.12.24"
features = [
"json",
"rustls-tls",
]
default-features = false
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.145"
[dependencies.thiserror]
version = "2.0.17"
[dependencies.tokio]
version = "1.48.0"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
]
[dependencies.tokio-tungstenite]
version = "0.28.0"
features = ["rustls-tls-webpki-roots"]
[dependencies.url]
version = "2.5.7"
[dev-dependencies.tokio]
version = "1.48.0"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
]