lib

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

commit fd506fb09173a501060bdef50f863b42383d9476
parent a3039d76d94aa55794bb6e65f22ded6dc6988396
Author: triesap <tyson@radroots.org>
Date:   Fri, 10 Apr 2026 00:58:23 +0000

nostr_runtime: update metadata

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

diff --git a/crates/nostr_runtime/Cargo.toml b/crates/nostr_runtime/Cargo.toml @@ -7,11 +7,11 @@ authors = [ ] rust-version.workspace = true license.workspace = true -description = "nostr runtime primitives and orchestration interfaces for the radroots sdk" +description = "Nostr runtime coordination, subscriptions, and snapshots" repository.workspace = true homepage.workspace = true documentation = "https://docs.rs/radroots_nostr_runtime" -readme.workspace = true +readme = "README" [features] default = ["std", "nostr-client", "rt"] diff --git a/crates/nostr_runtime/README b/crates/nostr_runtime/README @@ -0,0 +1,23 @@ +# radroots_nostr_runtime + +This is the README for `radroots_nostr_runtime`, which provides Nostr runtime +coordination for the `radroots` core libraries. + +## Overview + + * runtime builder, runtime events, and long-lived connection state types; + * subscription specifications, policies, handles, and traffic-light status + models; + * store abstractions and snapshot types used by higher-level network + orchestration; + * feature-gated integration with client, runtime, and nostrdb adapter crates. + +## Copyright + +Except as otherwise noted, all files in the `radroots_nostr_runtime` +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_nostr_runtime` distribution. diff --git a/crates/nostr_runtime/README.md b/crates/nostr_runtime/README.md @@ -1,14 +0,0 @@ -# radroots_nostr_runtime - -Nostr runtime primitives and orchestration interfaces for the Rad Roots SDK. - -## Goals - -- define stable runtime interfaces for events, subscriptions, and connections -- keep runtime orchestration behavior deterministic across supported environments -- support feature-gated client and async runtime integration surfaces -- provide reusable runtime primitives for higher-level Rad Roots crates - -## License - -Licensed under AGPL-3.0. See LICENSE.