commit 1c2c2b8b9e2688e383d2c6b237091a40759a201b parent 07adc0bed1a35ce7d072cfbc973918406dfe85f0 Author: triesap <tyson@radroots.org> Date: Fri, 20 Feb 2026 14:15:08 +0000 workspace: move `radroots-identity` under crates Diffstat:
8 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Cargo.toml b/Cargo.toml @@ -8,7 +8,7 @@ members = [ "crates/events-codec", "crates/events-codec-wasm", "crates/events-indexed", - "identity", + "crates/identity", "log", "net", "net-core", @@ -43,7 +43,7 @@ radroots-core = { path = "crates/core", version = "0.1.0", default-features = fa radroots-events = { path = "crates/events", version = "0.1.0", default-features = false } 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 = "identity", 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-ndb = { path = "nostr-ndb", version = "0.1.0", default-features = false } radroots-runtime = { path = "runtime", version = "0.1.0", default-features = false } diff --git a/identity/Cargo.toml b/crates/identity/Cargo.toml diff --git a/identity/build.rs b/crates/identity/build.rs diff --git a/identity/src/error.rs b/crates/identity/src/error.rs diff --git a/identity/src/identity.rs b/crates/identity/src/identity.rs diff --git a/identity/src/lib.rs b/crates/identity/src/lib.rs diff --git a/identity/src/username.rs b/crates/identity/src/username.rs diff --git a/identity/tests/identity.rs b/crates/identity/tests/identity.rs