key-vault 1.0.0

Enterprise-grade key management vault for Rust. 9-layer defense-in-depth: fragmentation, decoy bytes, codex transform, mlock + zeroize, constant-time ops, security monitoring. Pluggable key fetchers (TPM, keychain, file, env). Sub-microsecond access. REPS-compliant.
Documentation
1
2
3
4
5
6
7
8
9
10
11
# Pin the Rust toolchain so every checkout builds against the same
# compiler. Required by REPS §Reproducibility & Build Determinism:
# documenting the version in a README is insufficient — it must be
# enforced by tooling.
#
# `channel` is the crate's declared MSRV. CI also runs `stable` as a
# matrix dimension; this file makes a fresh local clone reproduce the
# MSRV build without any extra setup.
[toolchain]
channel = "1.85.0"
components = ["clippy", "rustfmt"]