lib

Core libraries for Radroots
git clone https://radroots.dev/git/lib.git
Log | Files | Refs | README | LICENSE

commit d8a0f94f277f6696efcadba33b50183578e1605f
parent 2e6a66e521f8ff27e06ea04ea5ba9f75cf038668
Author: triesap <tyson@radroots.org>
Date:   Fri, 10 Apr 2026 00:59:50 +0000

replica_sync_wasm: update metadata

Diffstat:
Mcrates/replica_sync_wasm/Cargo.toml | 4++--
Acrates/replica_sync_wasm/README | 25+++++++++++++++++++++++++
Dcrates/replica_sync_wasm/README.md | 14--------------
3 files changed, 27 insertions(+), 16 deletions(-)

diff --git a/crates/replica_sync_wasm/Cargo.toml b/crates/replica_sync_wasm/Cargo.toml @@ -7,11 +7,11 @@ authors = [ ] rust-version.workspace = true license.workspace = true -description = "wasm bindings for replica synchronization interfaces in radroots data layers" +description = "WebAssembly bindings for radroots-replica-sync" repository.workspace = true homepage.workspace = true documentation = "https://docs.rs/radroots_replica_sync_wasm" -readme.workspace = true +readme = "README" [lib] crate-type = ["cdylib", "rlib"] diff --git a/crates/replica_sync_wasm/README b/crates/replica_sync_wasm/README @@ -0,0 +1,25 @@ +# radroots_replica_sync_wasm + +This is the README for `radroots_replica_sync_wasm`, which provides WebAssembly +bindings for `radroots_replica_sync` in the `radroots` core libraries. + +## Overview + + * wasm32 entry points for full sync and single-event ingest operations; + * integration with `WasmSqlExecutor` from `radroots_sql_core` for database + access; + * UUIDv7 id generation and JSON and base64 boundary handling for JavaScript + callers; + * a small target-specific wrapper around the Rust sync crate rather than a + separate sync engine. + +## Copyright + +Except as otherwise noted, all files in the `radroots_replica_sync_wasm` +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_replica_sync_wasm` +distribution. diff --git a/crates/replica_sync_wasm/README.md b/crates/replica_sync_wasm/README.md @@ -1,14 +0,0 @@ -# radroots_replica_sync_wasm - -Wasm bindings for replica synchronization interfaces in Rad Roots data layers. - -## Goals - -- define stable wasm bindings for replica sync and ingest flows -- keep request parsing and result marshaling deterministic in web runtimes -- support integration with wasm SQL executor surfaces -- provide reusable sync bridge primitives for higher-level Rad Roots crates - -## License - -Licensed under AGPL-3.0. See LICENSE.