commit 9d416c1b7ad050ed86ac3d532db05098be086580
parent fa090fc8795efedf037642b90c13a0cd98bdc828
Author: triesap <tyson@radroots.org>
Date: Fri, 10 Apr 2026 00:58:42 +0000
protected_store: update metadata
Diffstat:
3 files changed, 25 insertions(+), 5 deletions(-)
diff --git a/crates/protected_store/Cargo.toml b/crates/protected_store/Cargo.toml
@@ -7,11 +7,11 @@ authors = [
]
rust-version.workspace = true
license.workspace = true
-description = "versioned authenticated local protected-store envelopes for radroots runtimes"
+description = "Authenticated store envelopes for protected local records"
repository.workspace = true
homepage.workspace = true
documentation = "https://docs.rs/radroots_protected_store"
-readme = "README.md"
+readme = "README"
[features]
default = []
diff --git a/crates/protected_store/README b/crates/protected_store/README
@@ -0,0 +1,23 @@
+# radroots_protected_store
+
+This is the README for `radroots_protected_store`, which provides authenticated
+local store envelopes for the `radroots` core libraries.
+
+## Overview
+
+ * versioned envelope and header types for protected local records;
+ * seal and open helpers built around XChaCha20Poly1305 and wrapped data keys;
+ * JSON encode and decode helpers for serialized protected payloads;
+ * portable core logic with optional `std` support through
+ `radroots_secret_vault`.
+
+## Copyright
+
+Except as otherwise noted, all files in the `radroots_protected_store`
+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_protected_store`
+distribution.
diff --git a/crates/protected_store/README.md b/crates/protected_store/README.md
@@ -1,3 +0,0 @@
-# radroots_protected_store
-
-Versioned authenticated local protected-store envelopes for Rad Roots runtimes.