lib

Core libraries for Radroots
git clone https://radroots.dev/git/lib.git
Log | Files | Refs | README | LICENSE

commit 8cdd463d70677b5b8b9da97f05ad14c30beb73d2
parent b6cea14edd7f545fcdeb81e47f0ad8231fcc1fff
Author: triesap <tyson@radroots.org>
Date:   Fri, 20 Feb 2026 14:17:52 +0000

workspace: move `radroots-nostr-runtime` under crates

Diffstat:
MCargo.toml | 4++--
Rnostr-runtime/Cargo.toml -> crates/nostr-runtime/Cargo.toml | 0
Rnostr-runtime/src/error.rs -> crates/nostr-runtime/src/error.rs | 0
Rnostr-runtime/src/lib.rs -> crates/nostr-runtime/src/lib.rs | 0
Rnostr-runtime/src/runtime.rs -> crates/nostr-runtime/src/runtime.rs | 0
Rnostr-runtime/src/store.rs -> crates/nostr-runtime/src/store.rs | 0
Rnostr-runtime/src/types.rs -> crates/nostr-runtime/src/types.rs | 0
7 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Cargo.toml b/Cargo.toml @@ -14,7 +14,7 @@ members = [ "crates/net-core", "crates/nostr", "crates/nostr-ndb", - "nostr-runtime", + "crates/nostr-runtime", "runtime", "sql-wasm-bridge", "sql-wasm-core", @@ -50,7 +50,7 @@ radroots-runtime = { path = "runtime", version = "0.1.0", default-features = fal radroots-log = { path = "crates/log", version = "0.1.0", default-features = false } radroots-net = { path = "crates/net", version = "0.1.0", default-features = false } radroots-net-core = { path = "crates/net-core", version = "0.1.0", default-features = false } -radroots-nostr-runtime = { path = "nostr-runtime", version = "0.1.0", default-features = false } +radroots-nostr-runtime = { path = "crates/nostr-runtime", version = "0.1.0", default-features = false } radroots-sql-wasm-bridge = { path = "sql-wasm-bridge", version = "0.1.0" } radroots-sql-wasm-core = { path = "sql-wasm-core", version = "0.1.0", default-features = false } radroots-sql-core = { path = "sql-core", version = "0.1.0" } diff --git a/nostr-runtime/Cargo.toml b/crates/nostr-runtime/Cargo.toml diff --git a/nostr-runtime/src/error.rs b/crates/nostr-runtime/src/error.rs diff --git a/nostr-runtime/src/lib.rs b/crates/nostr-runtime/src/lib.rs diff --git a/nostr-runtime/src/runtime.rs b/crates/nostr-runtime/src/runtime.rs diff --git a/nostr-runtime/src/store.rs b/crates/nostr-runtime/src/store.rs diff --git a/nostr-runtime/src/types.rs b/crates/nostr-runtime/src/types.rs