Some checks failed
Secrets CLI - Build & Release / 版本 & Release (push) Successful in 3s
Secrets CLI - Build & Release / 质量检查 (fmt / clippy / test) (push) Successful in 2m20s
Secrets CLI - Build & Release / Build (macOS aarch64 + x86_64) (push) Successful in 1m4s
Secrets CLI - Build & Release / Build (x86_64-unknown-linux-musl) (push) Successful in 1m13s
Secrets CLI - Build & Release / Build (x86_64-pc-windows-msvc) (push) Has been cancelled
Secrets CLI - Build & Release / 发布草稿 Release (push) Has been cancelled
- run 新增 -s/--secret 字段过滤,只注入指定字段到子进程(最小权限) - run 新增 --dry-run 模式,输出变量名与来源映射,不执行命令、不暴露值 - run 新增 -o 参数,dry-run 默认 JSON 输出 - 默认输出格式改为始终 json,移除 TTY 自动切换逻辑,-o text 供人类使用 - build_injected_env_map 签名从 &[SecretField] 改为 &[&SecretField] - 更新 AGENTS.md、README.md、.vscode/tasks.json - version: 0.9.5 → 0.9.6 Made-with: Cursor
34 lines
1.2 KiB
TOML
34 lines
1.2 KiB
TOML
[package]
|
|
name = "secrets"
|
|
version = "0.9.6"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
aes-gcm = "^0.10.3"
|
|
anyhow = "^1.0.102"
|
|
argon2 = { version = "^0.5.3", features = ["std"] }
|
|
chrono = { version = "^0.4.44", features = ["serde"] }
|
|
clap = { version = "^4.6.0", features = ["derive"] }
|
|
dirs = "^6.0.0"
|
|
dotenvy = "^0.15"
|
|
flate2 = "^1.1.9"
|
|
keyring = { version = "^3.6.3", features = ["apple-native", "windows-native", "linux-native"] }
|
|
rand = "^0.10.0"
|
|
reqwest = { version = "^0.12", default-features = false, features = ["rustls-tls", "json"] }
|
|
rpassword = "^7.4.0"
|
|
self-replace = "^1.5.0"
|
|
semver = "^1.0.27"
|
|
serde = { version = "^1.0.228", features = ["derive"] }
|
|
serde_json = "^1.0.149"
|
|
serde_yaml = "^0.9"
|
|
sha2 = "^0.10.9"
|
|
sqlx = { version = "^0.8.6", features = ["runtime-tokio", "tls-rustls", "postgres", "uuid", "json", "chrono"] }
|
|
tar = "^0.4.44"
|
|
tempfile = "^3.19"
|
|
tokio = { version = "^1.50.0", features = ["rt-multi-thread", "macros", "fs", "io-util", "process", "signal"] }
|
|
toml = "^1.0.7"
|
|
tracing = "^0.1"
|
|
tracing-subscriber = { version = "^0.3", features = ["env-filter"] }
|
|
uuid = { version = "^1.22.0", features = ["serde"] }
|
|
zip = { version = "^8.2.0", default-features = false, features = ["deflate"] }
|