All checks were successful
Secrets MCP — Build & Release / 版本 & Release (push) Successful in 3s
Secrets MCP — Build & Release / 质量检查 (fmt / clippy / test) (push) Successful in 7m20s
Secrets MCP — Build & Release / Build Linux (musl) (push) Successful in 8m23s
Secrets MCP — Build & Release / 发布草稿 Release (push) Successful in 1s
Secrets MCP — Build & Release / 部署 secrets-mcp (push) Successful in 6s
- audit_log 增加 user_id;业务写审计透传 user_id - Web /audit 与侧边栏;Dashboard 版本 footer 贴底(margin-top: auto) - 停止 API Key 鉴权成功写入登录审计 - 文档、CI、release-check 配套更新 Made-with: Cursor
45 lines
995 B
TOML
45 lines
995 B
TOML
[package]
|
|
name = "secrets-mcp"
|
|
version = "0.1.7"
|
|
edition.workspace = true
|
|
|
|
[[bin]]
|
|
name = "secrets-mcp"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
secrets-core = { path = "../secrets-core" }
|
|
|
|
# MCP
|
|
rmcp = { version = "1", features = ["server", "macros", "transport-streamable-http-server", "schemars"] }
|
|
|
|
# Web framework
|
|
axum = "0.8"
|
|
axum-extra = { version = "0.10", features = ["typed-header"] }
|
|
tower = "0.5"
|
|
tower-http = { version = "0.6", features = ["cors"] }
|
|
tower-sessions = "0.14"
|
|
|
|
# OAuth (manual token exchange via reqwest)
|
|
reqwest.workspace = true
|
|
|
|
# Templating - render templates manually to avoid integration crate issues
|
|
askama = "0.13"
|
|
|
|
# Common
|
|
anyhow.workspace = true
|
|
chrono.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
sha2.workspace = true
|
|
rand.workspace = true
|
|
sqlx.workspace = true
|
|
tokio.workspace = true
|
|
tracing.workspace = true
|
|
tracing-subscriber.workspace = true
|
|
uuid.workspace = true
|
|
dotenvy.workspace = true
|
|
urlencoding = "2"
|
|
schemars = "1"
|
|
http = "1"
|