lib

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

commit 42ca712299d87e94b708b14040e1143a706f8562
parent 3e7ecfe6a9927804220d4ccd54f693a27c97de02
Author: triesap <tyson@radroots.org>
Date:   Fri, 10 Apr 2026 00:59:34 +0000

replica_db: update metadata

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

diff --git a/crates/replica_db/Cargo.toml b/crates/replica_db/Cargo.toml @@ -7,11 +7,11 @@ authors = [ ] rust-version.workspace = true license.workspace = true -description = "replica sql runtime and migration interfaces for radroots data layers" +description = "Replica SQL runtime interfaces and typed database helpers" repository.workspace = true homepage.workspace = true documentation = "https://docs.rs/radroots_replica_db" -readme.workspace = true +readme = "README" [lib] crate-type = ["rlib"] diff --git a/crates/replica_db/README b/crates/replica_db/README @@ -0,0 +1,22 @@ +# radroots_replica_db + +This is the README for `radroots_replica_db`, which provides replica SQL +runtime interfaces for the `radroots` core libraries. + +## Overview + + * a generic `ReplicaSql<E>` facade over any `SqlExecutor` implementation; + * migration, backup, restore, and export helpers for replica database state; + * typed CRUD and query helpers over the shared replica schema models; + * feature-gated web, native, and embedded backend support through + `radroots_sql_core`. + +## Copyright + +Except as otherwise noted, all files in the `radroots_replica_db` 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_db` distribution. diff --git a/crates/replica_db/README.md b/crates/replica_db/README.md @@ -1,14 +0,0 @@ -# radroots_replica_db - -Replica SQL runtime and migration interfaces for Rad Roots data layers. - -## Goals - -- define stable SQL-backed interfaces for replica model operations -- keep migration, backup, and restore behavior deterministic across targets -- support export and manifest generation for synchronized replica snapshots -- provide reusable database primitives for higher-level Rad Roots crates - -## License - -Licensed under AGPL-3.0. See LICENSE.