commit b6cea14edd7f545fcdeb81e47f0ad8231fcc1fff parent 3dba025438baf4299e73ea31547dc90b48802735 Author: triesap <tyson@radroots.org> Date: Fri, 20 Feb 2026 14:17:34 +0000 workspace: move `radroots-nostr-ndb` under crates Diffstat:
11 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Cargo.toml b/Cargo.toml @@ -13,7 +13,7 @@ members = [ "crates/net", "crates/net-core", "crates/nostr", - "nostr-ndb", + "crates/nostr-ndb", "nostr-runtime", "runtime", "sql-wasm-bridge", @@ -45,7 +45,7 @@ radroots-events-codec = { path = "crates/events-codec", version = "0.1.0", defau radroots-events-indexed = { path = "crates/events-indexed", version = "0.1.0", default-features = false } radroots-identity = { path = "crates/identity", version = "0.1.0", default-features = false } radroots-nostr = { path = "crates/nostr", version = "0.1.0", default-features = false } -radroots-nostr-ndb = { path = "nostr-ndb", version = "0.1.0", default-features = false } +radroots-nostr-ndb = { path = "crates/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 = "crates/net", version = "0.1.0", default-features = false } diff --git a/nostr-ndb/Cargo.toml b/crates/nostr-ndb/Cargo.toml diff --git a/nostr-ndb/src/config.rs b/crates/nostr-ndb/src/config.rs diff --git a/nostr-ndb/src/error.rs b/crates/nostr-ndb/src/error.rs diff --git a/nostr-ndb/src/filter.rs b/crates/nostr-ndb/src/filter.rs diff --git a/nostr-ndb/src/ingest.rs b/crates/nostr-ndb/src/ingest.rs diff --git a/nostr-ndb/src/lib.rs b/crates/nostr-ndb/src/lib.rs diff --git a/nostr-ndb/src/ndb.rs b/crates/nostr-ndb/src/ndb.rs diff --git a/nostr-ndb/src/query.rs b/crates/nostr-ndb/src/query.rs diff --git a/nostr-ndb/src/runtime_adapter.rs b/crates/nostr-ndb/src/runtime_adapter.rs diff --git a/nostr-ndb/src/subscription.rs b/crates/nostr-ndb/src/subscription.rs