25 lines
640 B
TOML
25 lines
640 B
TOML
[package]
|
|
name = "secrets-mcp-local"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
description = "Local MCP gateway for onboarding, unlock caching, and delegated target execution"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[[bin]]
|
|
name = "secrets-mcp-local"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
axum = "0.8"
|
|
dotenvy.workspace = true
|
|
reqwest = { workspace = true, features = ["stream"] }
|
|
secrets-core = { path = "../secrets-core" }
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
tokio.workspace = true
|
|
tracing.workspace = true
|
|
tracing-subscriber = { workspace = true, features = ["env-filter"] }
|
|
url = "2"
|
|
uuid.workspace = true
|