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:
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