commit 56e7bc9f0c2999cd2e41fe0d657469b7d1b86740 parent 8cdd463d70677b5b8b9da97f05ad14c30beb73d2 Author: triesap <tyson@radroots.org> Date: Fri, 20 Feb 2026 14:18:02 +0000 workspace: move `radroots-runtime` under crates Diffstat:
11 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Cargo.toml b/Cargo.toml @@ -15,7 +15,7 @@ members = [ "crates/nostr", "crates/nostr-ndb", "crates/nostr-runtime", - "runtime", + "crates/runtime", "sql-wasm-bridge", "sql-wasm-core", "sql-core", @@ -46,7 +46,7 @@ radroots-events-indexed = { path = "crates/events-indexed", version = "0.1.0", d 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 = "crates/nostr-ndb", version = "0.1.0", default-features = false } -radroots-runtime = { path = "runtime", version = "0.1.0", default-features = false } +radroots-runtime = { path = "crates/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 } radroots-net-core = { path = "crates/net-core", version = "0.1.0", default-features = false } diff --git a/runtime/Cargo.toml b/crates/runtime/Cargo.toml diff --git a/runtime/src/backoff.rs b/crates/runtime/src/backoff.rs diff --git a/runtime/src/cli.rs b/crates/runtime/src/cli.rs diff --git a/runtime/src/config.rs b/crates/runtime/src/config.rs diff --git a/runtime/src/error.rs b/crates/runtime/src/error.rs diff --git a/runtime/src/json.rs b/crates/runtime/src/json.rs diff --git a/runtime/src/lib.rs b/crates/runtime/src/lib.rs diff --git a/runtime/src/service.rs b/crates/runtime/src/service.rs diff --git a/runtime/src/signals.rs b/crates/runtime/src/signals.rs diff --git a/runtime/src/tracing.rs b/crates/runtime/src/tracing.rs