commit 8b6d4ec354c8ce3e0b9e0cb9f886252a2a9b08a7
parent d1045a84cab1827721e969ca9047aa95c4ff28c3
Author: triesap <tyson@radroots.org>
Date: Fri, 10 Apr 2026 00:59:15 +0000
sql_wasm_bridge: update metadata
Diffstat:
3 files changed, 26 insertions(+), 16 deletions(-)
diff --git a/crates/sql_wasm_bridge/Cargo.toml b/crates/sql_wasm_bridge/Cargo.toml
@@ -7,11 +7,11 @@ authors = [
]
rust-version.workspace = true
license.workspace = true
-description = "wasm sql bridge primitives for radroots data layers"
+description = "Host bridge ABI for WebAssembly SQL execution"
repository.workspace = true
homepage.workspace = true
documentation = "https://docs.rs/radroots_sql_wasm_bridge"
-readme.workspace = true
+readme = "README"
[features]
default = []
diff --git a/crates/sql_wasm_bridge/README b/crates/sql_wasm_bridge/README
@@ -0,0 +1,24 @@
+# radroots_sql_wasm_bridge
+
+This is the README for `radroots_sql_wasm_bridge`, which provides a wasm SQL
+bridge ABI for the `radroots` core libraries.
+
+## Overview
+
+ * extern bridge hooks for SQL execution, query, and database export supplied
+ by the embedding host;
+ * transaction and savepoint helpers for begin, commit, and rollback flows;
+ * a wasm-first API surface with non-wasm shims used by tests;
+ * small bridge functions that return JavaScript values instead of defining a
+ database engine.
+
+## Copyright
+
+Except as otherwise noted, all files in the `radroots_sql_wasm_bridge`
+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_bridge`
+distribution.
diff --git a/crates/sql_wasm_bridge/README.md b/crates/sql_wasm_bridge/README.md
@@ -1,14 +0,0 @@
-# radroots_sql_wasm_bridge
-
-Wasm SQL bridge primitives for Rad Roots data layers.
-
-## Goals
-
-- define stable wasm bridge interfaces for SQL execute, query, export, and transactions
-- keep host interop behavior deterministic across wasm integrations
-- support a narrow integration boundary for SQL runtime crates
-- provide reusable wasm SQL bridge primitives for higher-level Rad Roots crates
-
-## License
-
-Licensed under AGPL-3.0. See LICENSE.