commit 3c5f06c71bb49dce7628adbaf6b7be6c623580c2
parent 5c2fec90cedd6ccc6e73708ce83481e275e35f92
Author: triesap <tyson@radroots.org>
Date: Fri, 10 Apr 2026 00:55:32 +0000
nostr_accounts: update metadata
Diffstat:
3 files changed, 25 insertions(+), 16 deletions(-)
diff --git a/crates/nostr_accounts/Cargo.toml b/crates/nostr_accounts/Cargo.toml
@@ -7,11 +7,11 @@ authors = [
]
rust-version.workspace = true
license.workspace = true
-description = "nostr protocol account primitives and secret-vault integrations for the radroots sdk"
+description = "Account models and vault-backed Nostr stores"
repository.workspace = true
homepage.workspace = true
documentation = "https://docs.rs/radroots_nostr_accounts"
-readme.workspace = true
+readme = "README"
[features]
default = ["std", "file-store", "memory-vault"]
diff --git a/crates/nostr_accounts/README b/crates/nostr_accounts/README
@@ -0,0 +1,23 @@
+# radroots_nostr_accounts
+
+This is the README for `radroots_nostr_accounts`, which provides account models
+and vault-backed stores for the `radroots` core libraries.
+
+## Overview
+
+ * account, selection, and store-state models for working Nostr identities;
+ * manager and store layers for file-backed and in-memory account persistence
+ under `std`;
+ * vault integrations through `radroots_secret_vault`, including memory and OS
+ keyring backends;
+ * optional nostrdb bridge helpers for account registration and lookup.
+
+## Copyright
+
+Except as otherwise noted, all files in the `radroots_nostr_accounts`
+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_accounts` distribution.
diff --git a/crates/nostr_accounts/README.md b/crates/nostr_accounts/README.md
@@ -1,14 +0,0 @@
-# radroots_nostr_accounts
-
-Nostr protocol account primitives and vault interfaces for the Rad Roots SDK.
-
-## Goals
-
-- define stable account, manager, store, and vault interfaces
-- keep account selection and persistence behavior deterministic across environments
-- support pluggable secret vault backends for local and keyring runtimes
-- provide reusable account primitives for higher-level Rad Roots crates
-
-## License
-
-Licensed under AGPL-3.0. See LICENSE.