commit 3dba025438baf4299e73ea31547dc90b48802735 parent 796877e7eeab49af2ac742212837c9954d390677 Author: triesap <tyson@radroots.org> Date: Fri, 20 Feb 2026 14:17:14 +0000 workspace: move `radroots-nostr` under crates Diffstat:
23 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Cargo.toml b/Cargo.toml @@ -12,7 +12,7 @@ members = [ "crates/log", "crates/net", "crates/net-core", - "nostr", + "crates/nostr", "nostr-ndb", "nostr-runtime", "runtime", @@ -44,7 +44,7 @@ radroots-events = { path = "crates/events", version = "0.1.0", default-features radroots-events-codec = { path = "crates/events-codec", version = "0.1.0", default-features = false } 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 = "nostr", 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-runtime = { path = "runtime", version = "0.1.0", default-features = false } radroots-log = { path = "crates/log", version = "0.1.0", default-features = false } diff --git a/nostr/Cargo.toml b/crates/nostr/Cargo.toml diff --git a/nostr/src/client.rs b/crates/nostr/src/client.rs diff --git a/nostr/src/codec_adapters.rs b/crates/nostr/src/codec_adapters.rs diff --git a/nostr/src/error.rs b/crates/nostr/src/error.rs diff --git a/nostr/src/event_adapters.rs b/crates/nostr/src/event_adapters.rs diff --git a/nostr/src/event_convert.rs b/crates/nostr/src/event_convert.rs diff --git a/nostr/src/events/application_handler.rs b/crates/nostr/src/events/application_handler.rs diff --git a/nostr/src/events/jobs.rs b/crates/nostr/src/events/jobs.rs diff --git a/nostr/src/events/metadata.rs b/crates/nostr/src/events/metadata.rs diff --git a/nostr/src/events/mod.rs b/crates/nostr/src/events/mod.rs diff --git a/nostr/src/events/post.rs b/crates/nostr/src/events/post.rs diff --git a/nostr/src/filter.rs b/crates/nostr/src/filter.rs diff --git a/nostr/src/identity_profile.rs b/crates/nostr/src/identity_profile.rs diff --git a/nostr/src/job_adapter.rs b/crates/nostr/src/job_adapter.rs diff --git a/nostr/src/lib.rs b/crates/nostr/src/lib.rs diff --git a/nostr/src/nip11.rs b/crates/nostr/src/nip11.rs diff --git a/nostr/src/nip17.rs b/crates/nostr/src/nip17.rs diff --git a/nostr/src/parse.rs b/crates/nostr/src/parse.rs diff --git a/nostr/src/relays.rs b/crates/nostr/src/relays.rs diff --git a/nostr/src/tags.rs b/crates/nostr/src/tags.rs diff --git a/nostr/src/types.rs b/crates/nostr/src/types.rs diff --git a/nostr/src/util.rs b/crates/nostr/src/util.rs