Some checks failed
Secrets CLI - Build & Release / 版本 & Release (push) Successful in 3s
Secrets CLI - Build & Release / 质量检查 (fmt / clippy / test) (push) Successful in 2m34s
Secrets CLI - Build & Release / Build (macOS aarch64 + x86_64) (push) Successful in 1m3s
Secrets CLI - Build & Release / Build (x86_64-unknown-linux-musl) (push) Successful in 1m15s
Secrets CLI - Build & Release / 发布草稿 Release (push) Has been cancelled
Secrets CLI - Build & Release / Build (x86_64-pc-windows-msvc) (push) Has been cancelled
- Drop field_type, value_len from secrets and secrets_history tables - Remove infer_field_type, compute_value_len from add.rs - Simplify search output to field names only - Update AGENTS.md, README.md documentation Bump version to 0.9.4 Made-with: Cursor
34 lines
1.2 KiB
TOML
34 lines
1.2 KiB
TOML
[package]
|
|
name = "secrets"
|
|
version = "0.9.4"
|
|
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"] }
|