lib

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

commit 21c4eaf80005f3caedf45cc1fc0d26fc132e9a03
parent 1c2c2b8b9e2688e383d2c6b237091a40759a201b
Author: triesap <tyson@radroots.org>
Date:   Fri, 20 Feb 2026 14:15:19 +0000

workspace: move `radroots-log` under crates

Diffstat:
MCargo.toml | 4++--
Rlog/Cargo.toml -> crates/log/Cargo.toml | 0
Rlog/src/error.rs -> crates/log/src/error.rs | 0
Rlog/src/init.rs -> crates/log/src/init.rs | 0
Rlog/src/lib.rs -> crates/log/src/lib.rs | 0
Rlog/src/options.rs -> crates/log/src/options.rs | 0
6 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Cargo.toml b/Cargo.toml @@ -9,7 +9,7 @@ members = [ "crates/events-codec-wasm", "crates/events-indexed", "crates/identity", - "log", + "crates/log", "net", "net-core", "nostr", @@ -47,7 +47,7 @@ radroots-identity = { path = "crates/identity", version = "0.1.0", default-featu radroots-nostr = { path = "nostr", version = "0.1.0", default-features = false } radroots-nostr-ndb = { path = "nostr-ndb", version = "0.1.0", default-features = false } radroots-runtime = { path = "runtime", version = "0.1.0", default-features = false } -radroots-log = { path = "log", version = "0.1.0", default-features = false } +radroots-log = { path = "crates/log", version = "0.1.0", default-features = false } radroots-net = { path = "net", version = "0.1.0", default-features = false } radroots-net-core = { path = "net-core", version = "0.1.0", default-features = false } radroots-nostr-runtime = { path = "nostr-runtime", version = "0.1.0", default-features = false } diff --git a/log/Cargo.toml b/crates/log/Cargo.toml diff --git a/log/src/error.rs b/crates/log/src/error.rs diff --git a/log/src/init.rs b/crates/log/src/init.rs diff --git a/log/src/lib.rs b/crates/log/src/lib.rs diff --git a/log/src/options.rs b/crates/log/src/options.rs