cli

Command-line interface for Radroots
git clone https://radroots.dev/git/cli.git
Log | Files | Refs | README | LICENSE

commit d1cf7fd498936e7e177732dc4afa5dcf8997df2a
parent 58d5634db5f0a98fee58c5cceb5d1697691fdf2f
Author: triesap <tyson@radroots.org>
Date:   Tue,  7 Apr 2026 22:34:56 +0000

build: refresh lockfile for shared secret store deps

- record `radroots-runtime` dependencies on the shared secret-store crates
- add the required crypto support crates to `Cargo.lock`
- align the nested lockfile with the verified CLI test lane
- keep the repo clean after the cross-runtime verification run

Diffstat:
MCargo.lock | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/Cargo.lock b/Cargo.lock @@ -1824,8 +1824,12 @@ name = "radroots-runtime" version = "0.1.0-alpha.1" dependencies = [ "anyhow", + "chacha20poly1305", "config", + "getrandom 0.2.17", "radroots-log", + "radroots-protected-store", + "radroots-secret-vault", "serde", "serde_json", "tempfile", @@ -1833,6 +1837,7 @@ dependencies = [ "tokio", "toml", "tracing", + "zeroize", ] [[package]]