mcpkill 0.1.0

Universal MCP proxy — semantic cache + chunking to kill token waste
Documentation
[package]
name = "mcpkill"
version = "0.1.0"
edition = "2021"
description = "Universal MCP proxy — semantic cache + chunking to kill token waste"
license = "MIT"
repository = "https://github.com/rustkit-ai/mcpkill"
keywords = ["mcp", "ai", "proxy", "cache", "tokens"]
categories = ["command-line-utilities"]
readme = "README.md"

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

[[bin]]
name = "mcpkill"
path = "src/main.rs"

[[bench]]
name = "bench"
harness = false

[dependencies]
tokio        = { version = "1", features = ["full"] }
serde        = { version = "1", features = ["derive"] }
serde_json   = "1"
clap         = { version = "4", features = ["derive"] }
anyhow       = "1"
fastembed    = "4"
rusqlite     = { version = "0.31", features = ["bundled"] }
rayon        = "1"
toml         = "0.8"

[dev-dependencies]
criterion    = { version = "0.5", features = ["html_reports"] }
tempfile     = "3"

[profile.release]
opt-level     = 3
lto           = true        # link-time optimisation — smaller + faster binary
codegen-units = 1           # single codegen unit for maximum inlining
strip         = true        # strip debug symbols (~40% size reduction)
panic         = "abort"     # smaller binary, no unwinding machinery