[package]
edition = "2021"
rust-version = "1.77"
name = "envseal"
version = "0.3.14"
authors = ["Santh Project <contact@santh.dev>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Write-only secret vault with process-level access control — post-agent secret management"
homepage = "https://santh.dev"
readme = "README.md"
keywords = [
"secrets",
"vault",
"environment",
"security",
"injection",
]
categories = [
"command-line-utilities",
"cryptography",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/santhsecurity/envseal"
[features]
fido2 = []
fido2-hardware = [
"fido2",
"dep:ctap-hid-fido2",
]
mock-gui = []
sandbox_integration_tests = []
test-backdoors = []
[lib]
name = "envseal"
path = "src/lib.rs"
[[test]]
name = "adversarial"
path = "tests/adversarial.rs"
[[test]]
name = "benchmark"
path = "tests/benchmark.rs"
harness = false
[[test]]
name = "concurrent"
path = "tests/concurrent.rs"
[[test]]
name = "deep_security"
path = "tests/deep_security.rs"
[[test]]
name = "e2e_health"
path = "tests/e2e_health.rs"
[[test]]
name = "edge_cases"
path = "tests/edge_cases.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "property"
path = "tests/property.rs"
[[test]]
name = "regression"
path = "tests/regression.rs"
[[test]]
name = "unit"
path = "tests/unit.rs"
[dependencies.aes-gcm]
version = "0.10"
[dependencies.argon2]
version = "0.5"
[dependencies.base32]
version = "0.5"
[dependencies.ctap-hid-fido2]
version = "3"
optional = true
[dependencies.hkdf]
version = "0.12"
[dependencies.hmac]
version = "0.12"
[dependencies.libc]
version = "0.2"
[dependencies.rand]
version = "0.8.6"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha1]
version = "0.10"
[dependencies.sha2]
version = "0.10"
[dependencies.toml]
version = "0.8"
[dependencies.zeroize]
version = "1"
features = ["derive"]
[dev-dependencies.tempfile]
version = "3"
[target."cfg(windows)".dependencies.windows-sys]
version = "0.59"
features = [
"Win32_Foundation",
"Win32_Security",
"Win32_Security_Authorization",
"Win32_Security_Cryptography",
"Win32_Storage_FileSystem",
"Win32_System_Diagnostics_Debug",
"Win32_System_Diagnostics_ToolHelp",
"Win32_System_IO",
"Win32_System_JobObjects",
"Win32_System_StationsAndDesktops",
"Win32_System_Memory",
"Win32_System_Threading",
]
[lints.clippy]
disallowed_methods = "warn"
[lints.rust]
unsafe_op_in_unsafe_fn = "warn"