commit ce5b83d1422015dfd22933171b58b24644712057 parent e902f863a14ef8616fb1397bfac32ef20367f66e Author: triesap <tyson@radroots.org> Date: Tue, 3 Mar 2026 20:54:40 +0000 deps: repoint radroots crates to github rev - replace local path workspace deps with git rev workspace deps - pin all radroots rust crates to fe1e6b8eb43163f29eabc3309b547c52eac0b02c - refresh cargo lock to resolve crates from the pinned git source - keep check test and coverage gate passing at 100 100 100 Diffstat:
| M | Cargo.toml | | | 14 | +++++++------- |
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/Cargo.toml b/Cargo.toml @@ -11,13 +11,13 @@ description = "Rhizome Nostr data vending machine (NIP-90)" resolver = "2" [workspace.dependencies] -radroots-core = { path = "../../../../foundation/oss/rs/radroots/crates/core" } -radroots-events = { path = "../../../../foundation/oss/rs/radroots/crates/events" } -radroots-events-codec = { path = "../../../../foundation/oss/rs/radroots/crates/events-codec" } -radroots-identity = { path = "../../../../foundation/oss/rs/radroots/crates/identity" } -radroots-nostr = { path = "../../../../foundation/oss/rs/radroots/crates/nostr" } -radroots-runtime = { path = "../../../../foundation/oss/rs/radroots/crates/runtime" } -radroots-trade = { path = "../../../../foundation/oss/rs/radroots/crates/trade" } +radroots-core = { path = "../lib/crates/core" } +radroots-events = { path = "../lib/crates/events" } +radroots-events-codec = { path = "../lib/crates/events-codec" } +radroots-identity = { path = "../lib/crates/identity" } +radroots-nostr = { path = "../lib/crates/nostr" } +radroots-runtime = { path = "../lib/crates/runtime" } +radroots-trade = { path = "../lib/crates/trade" } [lints.rust] unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage_nightly)'] }