[package]
edition = "2021"
name = "warmplane"
version = "0.23.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Local control plane that keeps MCP sessions warm with compact capability/resource/prompt facades."
homepage = "https://github.com/Warmplane/warmplane"
readme = "README.md"
keywords = [
"mcp",
"agent",
"cli",
"proxy",
"orchestration",
]
categories = [
"command-line-utilities",
"network-programming",
]
license = "MIT"
repository = "https://github.com/Warmplane/warmplane"
[features]
default = []
semantic-search = [
"dep:fastembed",
"dep:openssl",
]
[lib]
name = "warmplane"
path = "src/lib.rs"
[[bin]]
name = "warmplane"
path = "src/main.rs"
[[test]]
name = "e2e_tests"
path = "tests/e2e_tests.rs"
[[test]]
name = "embedded_tests"
path = "tests/embedded_tests.rs"
[[test]]
name = "hitl_tests"
path = "tests/hitl_tests.rs"
[[test]]
name = "profiles_tests"
path = "tests/profiles_tests.rs"
[[test]]
name = "rbac_integration"
path = "tests/rbac_integration.rs"
[[bench]]
name = "catalog_bench"
path = "benches/catalog_bench.rs"
harness = false
[[bench]]
name = "facade_bench"
path = "benches/facade_bench.rs"
harness = false
[[bench]]
name = "idempotency_bench"
path = "benches/idempotency_bench.rs"
harness = false
[[bench]]
name = "search_bench"
path = "benches/search_bench.rs"
harness = false
[dependencies.anyhow]
version = "1.0"
[dependencies.axum]
version = "0.7"
[dependencies.base64]
version = "0.22"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.colored]
version = "2.1"
[dependencies.fastembed]
version = "4.5"
optional = true
[dependencies.futures]
version = "0.3"
[dependencies.hex]
version = "0.4"
[dependencies.hmac]
version = "0.12"
[dependencies.inquire]
version = "0.7"
[dependencies.openssl]
version = "0.10"
features = ["vendored"]
optional = true
[dependencies.opentelemetry]
version = "0.27"
[dependencies.opentelemetry-otlp]
version = "0.27"
features = [
"grpc-tonic",
"trace",
]
[dependencies.opentelemetry_sdk]
version = "0.27"
features = ["rt-tokio"]
[dependencies.rand]
version = "0.8"
[dependencies.reqwest]
version = "0.13"
features = [
"json",
"rustls",
"form",
"stream",
]
default-features = false
[dependencies.rmcp]
version = "3.1.2"
features = [
"client",
"server",
"transport-child-process",
"transport-io",
"transport-streamable-http-client-reqwest",
"transport-streamable-http-server",
]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.tokio]
version = "1.40"
features = ["full"]
[dependencies.tokio-util]
version = "0.7"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-opentelemetry]
version = "0.28"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"json",
]
[dev-dependencies.criterion]
version = "0.5"
features = [
"async_tokio",
"html_reports",
]
[dev-dependencies.tempfile]
version = "3.10"
[dev-dependencies.tower]
version = "0.5"
features = ["util"]