cli

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

commit 685211cea4ff63a28f7392b344f890c3eaf8a1f6
parent 94abe59df22261896c4eea882d405965bd6a77cf
Author: triesap <tyson@radroots.org>
Date:   Sat, 13 Jun 2026 15:09:51 -0700

sdk: point CLI at SDK workspace

- update radroots_sdk to resolve from the SDK repo path
- refresh the CLI lockfile for the new SDK crate version
- keep existing rr-rs core crate paths unchanged
- leave order runtime typed-ID alignment for a dedicated consumer slice

Diffstat:
MCargo.lock | 3+--
MCargo.toml | 2+-
2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/Cargo.lock b/Cargo.lock @@ -3765,7 +3765,7 @@ dependencies = [ [[package]] name = "radroots_sdk" -version = "0.1.0-alpha.2" +version = "0.1.0" dependencies = [ "radroots_events", "radroots_events_codec", @@ -3818,7 +3818,6 @@ dependencies = [ "rusqlite", "serde", "serde_json", - "thiserror 1.0.69", "uuid", ] diff --git a/Cargo.toml b/Cargo.toml @@ -41,7 +41,7 @@ radroots_replica_db_schema = { path = "../lib/crates/replica_db_schema" } radroots_replica_sync = { path = "../lib/crates/replica_sync" } radroots_runtime = { path = "../lib/crates/runtime" } radroots_runtime_paths = { path = "../lib/crates/runtime_paths" } -radroots_sdk = { path = "../lib/crates/sdk", features = ["radrootsd-client", "relay-client", "signing"] } +radroots_sdk = { path = "../sdk/crates/sdk", features = ["radrootsd-client", "relay-client", "signing"] } radroots_secret_vault = { path = "../lib/crates/secret_vault", features = ["std", "os-keyring"] } radroots_sql_core = { path = "../lib/crates/sql_core", features = ["native"] } radroots_sp1_host_trade = { path = "../lib/crates/sp1_host_trade" }