[package]
edition = "2024"
rust-version = "1.85"
name = "keyclaw"
version = "0.2.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Local MITM proxy that keeps secrets out of LLM traffic"
homepage = "https://github.com/GuthL/KeyClaw"
documentation = "https://docs.rs/keyclaw"
readme = "README.md"
keywords = [
"llm",
"proxy",
"security",
"mitm",
"secrets",
]
categories = [
"command-line-utilities",
"network-programming",
]
license = "MIT"
repository = "https://github.com/GuthL/KeyClaw"
resolver = "3"
[lib]
name = "keyclaw"
path = "src/lib.rs"
[[bin]]
name = "keyclaw"
path = "src/main.rs"
[[test]]
name = "bootstrap_layout"
path = "tests/bootstrap_layout.rs"
[[test]]
name = "docs_placeholder_contract"
path = "tests/docs_placeholder_contract.rs"
[[test]]
name = "e2e_cli"
path = "tests/e2e_cli.rs"
[[test]]
name = "e2e_cli_layout"
path = "tests/e2e_cli_layout.rs"
[[test]]
name = "e2e_cli_support"
path = "tests/e2e_cli_support.rs"
[[test]]
name = "integration_proxy"
path = "tests/integration_proxy.rs"
[[test]]
name = "launcher_layout"
path = "tests/launcher_layout.rs"
[[test]]
name = "pipeline"
path = "tests/pipeline.rs"
[[test]]
name = "placeholder"
path = "tests/placeholder.rs"
[[test]]
name = "placeholder_fast_paths"
path = "tests/placeholder_fast_paths.rs"
[[test]]
name = "placeholder_test_assertions"
path = "tests/placeholder_test_assertions.rs"
[[test]]
name = "proxy_layout"
path = "tests/proxy_layout.rs"
[[test]]
name = "redaction"
path = "tests/redaction.rs"
[[test]]
name = "stats"
path = "tests/stats.rs"
[[test]]
name = "vault"
path = "tests/vault.rs"
[dependencies.aes-gcm]
version = "0.10"
[dependencies.base64]
version = "0.22"
[dependencies.clap]
version = "4.5"
features = ["std"]
[dependencies.futures]
version = "0.3"
[dependencies.hex]
version = "0.4"
[dependencies.http-body-util]
version = "0.1"
[dependencies.hudsucker]
version = "0.24"
[dependencies.libc]
version = "0.2"
[dependencies.once_cell]
version = "1.21"
[dependencies.rand]
version = "0.8"
[dependencies.rcgen]
version = "0.14"
[dependencies.regex]
version = "1.12"
[dependencies.reqwest]
version = "0.12"
features = [
"blocking",
"rustls-tls",
]
default-features = false
[dependencies.scrypt]
version = "0.11"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.signal-hook]
version = "0.3"
[dependencies.tempfile]
version = "3.23"
[dependencies.thiserror]
version = "2.0"
[dependencies.tiny_http]
version = "0.12"
[dependencies.tokio]
version = "1.50"
features = [
"rt-multi-thread",
"signal",
"sync",
"time",
]
[dependencies.toml]
version = "0.8"
[dependencies.url]
version = "2.5"
[dependencies.x509-parser]
version = "0.18"
[dev-dependencies.assert_cmd]
version = "2.0"
[dev-dependencies.predicates]
version = "3.1"
[dev-dependencies.wait-timeout]
version = "0.2"
[profile.release]
lto = "thin"
codegen-units = 1
strip = "symbols"