lib

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

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

runtime: update metadata

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

diff --git a/crates/runtime/Cargo.toml b/crates/runtime/Cargo.toml @@ -7,11 +7,11 @@ authors = [ ] rust-version.workspace = true license.workspace = true -description = "runtime config, io, and process helpers for radroots services and apps" +description = "Runtime configuration, secret-file, and service helpers" repository.workspace = true homepage.workspace = true documentation = "https://docs.rs/radroots_runtime" -readme.workspace = true +readme = "README" [features] default = [] diff --git a/crates/runtime/README b/crates/runtime/README @@ -0,0 +1,22 @@ +# radroots_runtime + +This is the README for `radroots_runtime`, which provides runtime configuration +and service helpers for the `radroots` core libraries. + +## Overview + + * config loaders, JSON file helpers, and structured runtime error types; + * protected secret-file seal and open helpers built on the workspace security + crates; + * service bootstrap, shutdown signal, backoff, and tracing initialization + utilities; + * an optional CLI layer for configuration parsing and process startup. + +## Copyright + +Except as otherwise noted, all files in the `radroots_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_runtime` distribution. diff --git a/crates/runtime/README.md b/crates/runtime/README.md @@ -1,14 +0,0 @@ -# radroots_runtime - -Runtime configuration, I/O, and process primitives for Rad Roots services and apps. - -## Goals - -- define stable runtime interfaces for config loading, JSON I/O, and process wiring -- keep runtime behavior deterministic across development and production environments -- support tracing, signal, and service configuration integration surfaces -- provide reusable runtime primitives for higher-level Rad Roots crates - -## License - -Licensed under AGPL-3.0. See LICENSE.