commit eca21851cd9657ff4a9de8ac0dcc9bfd164f5403 parent 21c4eaf80005f3caedf45cc1fc0d26fc132e9a03 Author: triesap <tyson@radroots.org> Date: Fri, 20 Feb 2026 14:16:19 +0000 workspace: move `radroots-net-core` under crates Diffstat:
19 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Cargo.toml b/Cargo.toml @@ -11,7 +11,7 @@ members = [ "crates/identity", "crates/log", "net", - "net-core", + "crates/net-core", "nostr", "nostr-ndb", "nostr-runtime", @@ -49,7 +49,7 @@ radroots-nostr-ndb = { path = "nostr-ndb", version = "0.1.0", default-features = 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-core = { path = "net-core", 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" } radroots-sql-wasm-core = { path = "sql-wasm-core", version = "0.1.0", default-features = false } diff --git a/net-core/Cargo.toml b/crates/net-core/Cargo.toml diff --git a/net-core/build.rs b/crates/net-core/build.rs diff --git a/net-core/src/builder.rs b/crates/net-core/src/builder.rs diff --git a/net-core/src/config.rs b/crates/net-core/src/config.rs diff --git a/net-core/src/error.rs b/crates/net-core/src/error.rs diff --git a/net-core/src/keys.rs b/crates/net-core/src/keys.rs diff --git a/net-core/src/lib.rs b/crates/net-core/src/lib.rs diff --git a/net-core/src/logging.rs b/crates/net-core/src/logging.rs diff --git a/net-core/src/net.rs b/crates/net-core/src/net.rs diff --git a/net-core/src/nostr_client/connection.rs b/crates/net-core/src/nostr_client/connection.rs diff --git a/net-core/src/nostr_client/events/custom.rs b/crates/net-core/src/nostr_client/events/custom.rs diff --git a/net-core/src/nostr_client/events/post.rs b/crates/net-core/src/nostr_client/events/post.rs diff --git a/net-core/src/nostr_client/events/profile.rs b/crates/net-core/src/nostr_client/events/profile.rs diff --git a/net-core/src/nostr_client/inner.rs b/crates/net-core/src/nostr_client/inner.rs diff --git a/net-core/src/nostr_client/manager.rs b/crates/net-core/src/nostr_client/manager.rs diff --git a/net-core/src/nostr_client/mod.rs b/crates/net-core/src/nostr_client/mod.rs diff --git a/net-core/src/nostr_client/status.rs b/crates/net-core/src/nostr_client/status.rs diff --git a/net-core/src/nostr_client/types.rs b/crates/net-core/src/nostr_client/types.rs