commit debab9e01f7edc2cad57258bbd4414c3e7a23c72
parent d7430cb2aa4d02ee0f76ff7e5f4fb453d9188f2d
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` and `radroots-protected-store` in `Cargo.lock`
- add the required crypto support crates for the app workspace
- align the nested lockfile with the verified host-vault test lanes
- keep the repo clean after the cross-runtime verification run
Diffstat:
1 file changed, 17 insertions(+), 0 deletions(-)
diff --git a/Cargo.lock b/Cargo.lock
@@ -3295,12 +3295,28 @@ dependencies = [
]
[[package]]
+name = "radroots-protected-store"
+version = "0.1.0-alpha.1"
+dependencies = [
+ "chacha20poly1305",
+ "getrandom 0.2.17",
+ "radroots-secret-vault",
+ "serde",
+ "serde_json",
+ "zeroize",
+]
+
+[[package]]
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",
@@ -3308,6 +3324,7 @@ dependencies = [
"tokio",
"toml",
"tracing",
+ "zeroize",
]
[[package]]