secrets-vault 2.4.1

AES-256-GCM encrypted key-value vault with PBKDF2 key derivation. Store API keys and tokens securely instead of plaintext dotfiles.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.85"
name = "secrets-vault"
version = "2.4.1"
build = false
exclude = [
    "target/",
    ".DS_Store",
    ".cve_feeds/",
    "findings.md",
    "CLAUDE.md",
    "SUMMARY.md",
    "QVLT2_SPEC.md",
    "LEASE_DESIGN.md",
    "APPROVAL_PROTOCOL.md",
    "BROKER_PROTOCOL.md",
    "PHONE_2FA_PROTOCOL.md",
    "AGENT_SECRET_LIFECYCLE.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "AES-256-GCM encrypted key-value vault with PBKDF2 key derivation. Store API keys and tokens securely instead of plaintext dotfiles."
homepage = "https://github.com/quantum-encoding/secrets-vault"
documentation = "https://docs.rs/secrets-vault"
readme = "README.md"
keywords = [
    "encryption",
    "secrets",
    "vault",
    "aes-gcm",
    "security",
]
categories = [
    "cryptography",
    "command-line-utilities",
]
license = "MIT"
repository = "https://github.com/quantum-encoding/secrets-vault"

[features]
cli = [
    "dep:clap",
    "dep:rpassword",
    "dep:dirs",
    "dep:toml",
    "dep:serde",
    "dep:serde_json",
    "dep:age",
    "dep:jiff",
]
default = ["cli"]

[lib]
name = "secrets_vault"
path = "src/lib.rs"

[[bin]]
name = "secrets"
path = "src/main.rs"
required-features = ["cli"]

[dependencies.aes-gcm]
version = "0.11"

[dependencies.age]
version = "0.12"
features = ["armor"]
optional = true
default-features = false

[dependencies.clap]
version = "4"
features = ["derive"]
optional = true

[dependencies.dirs]
version = "6.0"
optional = true

[dependencies.getrandom]
version = "0.4"

[dependencies.hkdf]
version = "0.13"

[dependencies.hmac]
version = "0.13"

[dependencies.jiff]
version = "0.2"
optional = true

[dependencies.pbkdf2]
version = "0.13"

[dependencies.rpassword]
version = "7.0"
optional = true

[dependencies.serde]
version = "1"
features = ["derive"]
optional = true

[dependencies.serde_json]
version = "1"
optional = true

[dependencies.sha2]
version = "0.11"

[dependencies.toml]
version = "0.9"
optional = true

[dependencies.zeroize]
version = "1.6"

[target.'cfg(target_os = "macos")'.dependencies.core-foundation]
version = "0.10"

[target.'cfg(target_os = "macos")'.dependencies.core-foundation-sys]
version = "0.8"

[target.'cfg(target_os = "macos")'.dependencies.security-framework-sys]
version = "2.12"
features = ["OSX_10_15"]

[target."cfg(unix)".dependencies.libc]
version = "0.2"

[target."cfg(windows)".dependencies.windows]
version = "0.62"
features = [
    "Security_Credentials_UI",
    "Win32_Foundation",
    "Win32_Security",
    "Win32_Security_Authorization",
    "Win32_Security_Cryptography",
    "Win32_System_Console",
    "Win32_System_Diagnostics_ToolHelp",
    "Win32_System_Threading",
    "Win32_System_Pipes",
    "Win32_Storage_FileSystem",
    "Win32_System_IO",
]

[target."cfg(windows)".dependencies.windows-future]
version = "0.3"

[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
strip = true