commit d1045a84cab1827721e969ca9047aa95c4ff28c3
parent 6e67d5723c913fdb47e2499da36216f2a08e1ec4
Author: triesap <tyson@radroots.org>
Date: Fri, 10 Apr 2026 00:59:10 +0000
sql_core: update metadata
Diffstat:
3 files changed, 26 insertions(+), 16 deletions(-)
diff --git a/crates/sql_core/Cargo.toml b/crates/sql_core/Cargo.toml
@@ -7,11 +7,11 @@ authors = [
]
rust-version.workspace = true
license.workspace = true
-description = "sql execution and migration primitives for radroots data layers"
+description = "SQL execution and migration primitives"
repository.workspace = true
homepage.workspace = true
documentation = "https://docs.rs/radroots_sql_core"
-readme.workspace = true
+readme = "README"
[lib]
crate-type = ["rlib"]
diff --git a/crates/sql_core/README b/crates/sql_core/README
@@ -0,0 +1,24 @@
+# radroots_sql_core
+
+This is the README for `radroots_sql_core`, which provides SQL execution and
+migration primitives for the `radroots` core libraries.
+
+## Overview
+
+ * the `SqlExecutor` trait and `ExecOutcome` type used by higher-level database
+ crates;
+ * native SQLite execution and utility support behind the `native` feature;
+ * WebAssembly execution, export locking, and bridge integration for
+ browser-facing builds;
+ * optional embedded-engine support for self-contained runtimes and migration
+ workflows.
+
+## Copyright
+
+Except as otherwise noted, all files in the `radroots_sql_core` distribution
+are
+
+ Copyright (c) 2020-2026 Tyson Lupul
+
+For information on usage and redistribution, and for a DISCLAIMER OF ALL
+WARRANTIES, see LICENSE included in the `radroots_sql_core` distribution.
diff --git a/crates/sql_core/README.md b/crates/sql_core/README.md
@@ -1,14 +0,0 @@
-# radroots_sql_core
-
-SQL execution and migration primitives for Rad Roots data layers.
-
-## Goals
-
-- define stable SQL executor and error interfaces across target environments
-- keep migration execution behavior deterministic across runtime targets
-- support feature-gated native, web bridge, and embedded execution surfaces
-- provide reusable SQL primitives for higher-level Rad Roots crates
-
-## License
-
-Licensed under AGPL-3.0. See LICENSE.