radrootsd

JSON-RPC bridge for Radroots event publishing
git clone https://radroots.dev/git/radrootsd.git
Log | Files | Refs | README | LICENSE

commit 782a1b8219d88c713b463b97502e53c05801208e
parent 8ef5867b63305ed041ae732ef04fcf226b5ebfd3
Author: triesap <tyson@radroots.org>
Date:   Fri, 20 Mar 2026 03:01:08 +0000

build: use local radroots crate sources

Diffstat:
MCargo.toml | 14+++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/Cargo.toml b/Cargo.toml @@ -11,13 +11,13 @@ description = "Radroots daemon binary" 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)'] }