lean-ctx 1.3.2

Hybrid Context Optimizer with Token Dense Dialect (TDD). Shell Hook + MCP Server. Reduces LLM token consumption by 89-99%.
[package]
name = "lean-ctx"
version = "1.3.2"
edition = "2021"
description = "Hybrid Context Optimizer with Token Dense Dialect (TDD). Shell Hook + MCP Server. Reduces LLM token consumption by 89-99%."
license = "MIT"
repository = "https://github.com/yvgude/lean-ctx"
homepage = "https://lean-ctx.pounce.ch"
readme = "README.md"
keywords = ["mcp", "llm", "tokens", "compression", "ai"]
categories = ["command-line-utilities", "development-tools"]
exclude = ["examples/", "tests/"]

[[bin]]
name = "lean-ctx"
path = "src/main.rs"

[dependencies]
rmcp = { version = "1", features = ["server", "transport-io"] }
tiktoken-rs = "0.6"
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
md-5 = "0.10"
anyhow = "1"
regex = "1"
walkdir = "2"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
dirs = "5"
chrono = { version = "0.4", features = ["serde"] }

[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
strip = true
panic = "abort"