commit b7c8c467e94bcba96d90576024111472640a12ed parent 56e7bc9f0c2999cd2e41fe0d657469b7d1b86740 Author: triesap <tyson@radroots.org> Date: Fri, 20 Feb 2026 14:18:15 +0000 workspace: move `radroots-sql-core` under crates Diffstat:
11 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Cargo.toml b/Cargo.toml @@ -18,7 +18,7 @@ members = [ "crates/runtime", "sql-wasm-bridge", "sql-wasm-core", - "sql-core", + "crates/sql-core", "tangle-db-schema", "tangle-events", "tangle-events-wasm", @@ -53,7 +53,7 @@ radroots-net-core = { path = "crates/net-core", version = "0.1.0", default-featu radroots-nostr-runtime = { path = "crates/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 } -radroots-sql-core = { path = "sql-core", version = "0.1.0" } +radroots-sql-core = { path = "crates/sql-core", version = "0.1.0" } radroots-tangle-db-schema = { path = "tangle-db-schema", version = "0.1.0", default-features = false } radroots-tangle-events = { path = "tangle-events", version = "0.1.0", default-features = false } radroots-tangle-db = { path = "tangle-db", version = "0.1.0", default-features = false } diff --git a/sql-core/Cargo.toml b/crates/sql-core/Cargo.toml diff --git a/sql-core/src/error.rs b/crates/sql-core/src/error.rs diff --git a/sql-core/src/executor_embedded.rs b/crates/sql-core/src/executor_embedded.rs diff --git a/sql-core/src/executor_sqlite.rs b/crates/sql-core/src/executor_sqlite.rs diff --git a/sql-core/src/executor_wasm.rs b/crates/sql-core/src/executor_wasm.rs diff --git a/sql-core/src/export_lock.rs b/crates/sql-core/src/export_lock.rs diff --git a/sql-core/src/lib.rs b/crates/sql-core/src/lib.rs diff --git a/sql-core/src/migrations.rs b/crates/sql-core/src/migrations.rs diff --git a/sql-core/src/sqlite_util.rs b/crates/sql-core/src/sqlite_util.rs diff --git a/sql-core/src/utils.rs b/crates/sql-core/src/utils.rs