commit 1d557a9458d121bdedcc5422f40102529771106e
parent 8b6d4ec354c8ce3e0b9e0cb9f886252a2a9b08a7
Author: triesap <tyson@radroots.org>
Date: Fri, 10 Apr 2026 00:59:24 +0000
sql_wasm_core: update metadata
Diffstat:
3 files changed, 25 insertions(+), 16 deletions(-)
diff --git a/crates/sql_wasm_core/Cargo.toml b/crates/sql_wasm_core/Cargo.toml
@@ -7,11 +7,11 @@ authors = [
]
rust-version.workspace = true
license.workspace = true
-description = "wasm sql runtime primitives for radroots data layers"
+description = "WebAssembly SQL runtime facade and execution entry points"
repository.workspace = true
homepage.workspace = true
documentation = "https://docs.rs/radroots_sql_wasm_core"
-readme.workspace = true
+readme = "README"
[lib]
crate-type = ["cdylib", "rlib"]
diff --git a/crates/sql_wasm_core/README b/crates/sql_wasm_core/README
@@ -0,0 +1,23 @@
+# radroots_sql_wasm_core
+
+This is the README for `radroots_sql_wasm_core`, which provides a wasm SQL
+runtime facade for the `radroots` core libraries.
+
+## Overview
+
+ * shared wasm entry points for SQL execution, query, export, and transaction
+ control;
+ * compile-time selection between the host bridge layer and an embedded SQL
+ engine;
+ * an optional singleton embedded engine for self-contained wasm runtimes;
+ * small JSON parsing and JavaScript error helpers for wasm callers.
+
+## Copyright
+
+Except as otherwise noted, all files in the `radroots_sql_wasm_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_wasm_core` distribution.
diff --git a/crates/sql_wasm_core/README.md b/crates/sql_wasm_core/README.md
@@ -1,14 +0,0 @@
-# radroots_sql_wasm_core
-
-Wasm SQL runtime primitives for Rad Roots data layers.
-
-## Goals
-
-- define stable wasm SQL runtime interfaces for execute, query, and export flows
-- keep wasm SQL runtime behavior deterministic across supported environments
-- support feature-gated bridge and embedded engine integration surfaces
-- provide reusable wasm SQL runtime primitives for higher-level Rad Roots crates
-
-## License
-
-Licensed under AGPL-3.0. See LICENSE.