commit 796877e7eeab49af2ac742212837c9954d390677
parent eca21851cd9657ff4a9de8ac0dcc9bfd164f5403
Author: triesap <tyson@radroots.org>
Date: Fri, 20 Feb 2026 14:16:47 +0000
workspace: move `radroots-net` under crates
Diffstat:
3 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Cargo.toml b/Cargo.toml
@@ -10,7 +10,7 @@ members = [
"crates/events-indexed",
"crates/identity",
"crates/log",
- "net",
+ "crates/net",
"crates/net-core",
"nostr",
"nostr-ndb",
@@ -48,7 +48,7 @@ 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 = "crates/log", version = "0.1.0", default-features = false }
-radroots-net = { path = "net", 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-sql-wasm-bridge = { path = "sql-wasm-bridge", version = "0.1.0" }
diff --git a/net/Cargo.toml b/crates/net/Cargo.toml
diff --git a/net/src/lib.rs b/crates/net/src/lib.rs