lib

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

commit 5c2fec90cedd6ccc6e73708ce83481e275e35f92
parent 079dc8e483fb4273ea98078716a6eb3d24c19d7f
Author: triesap <tyson@radroots.org>
Date:   Fri, 10 Apr 2026 00:55:26 +0000

nostr: update metadata

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

diff --git a/crates/nostr/Cargo.toml b/crates/nostr/Cargo.toml @@ -7,11 +7,11 @@ authors = [ ] rust-version.workspace = true license.workspace = true -description = "nostr protocol primitives and adapter interfaces for the radroots sdk" +description = "Shared Nostr protocol primitives and adapters" repository.workspace = true homepage.workspace = true documentation = "https://docs.rs/radroots_nostr" -readme.workspace = true +readme = "README" [features] default = ["std"] diff --git a/crates/nostr/README b/crates/nostr/README @@ -0,0 +1,22 @@ +# radroots_nostr + +This is the README for `radroots_nostr`, which provides shared Nostr protocol +primitives for the `radroots` core libraries. + +## Overview + + * typed filters, tags, events, relay metadata, parsers, and utility helpers; + * feature-gated client operations and relay-management helpers for active + network use; + * adapters between `radroots_events`, `radroots_events_codec`, and Nostr wire + representations; + * optional NIP-11 and NIP-17 support alongside `std` and `no_std` builds. + +## Copyright + +Except as otherwise noted, all files in the `radroots_nostr` 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` distribution. diff --git a/crates/nostr/README.md b/crates/nostr/README.md @@ -1,14 +0,0 @@ -# radroots_nostr - -Nostr protocol primitives and adapter interfaces for the Rad Roots SDK. - -## Goals - -- define stable interfaces for Nostr types, tags, filters, and parsing -- keep event and identity adapter behavior deterministic across targets -- support feature-gated client, codec, HTTP, and NIP integration surfaces -- provide reusable Nostr primitives for higher-level Rad Roots crates - -## License - -Licensed under AGPL-3.0. See LICENSE.