commit a3365e26b2132609c9340dbaa550e0187d1b7429
parent 9cf007f0f252486273ca5f1c1cf28a53128e9328
Author: triesap <tyson@radroots.org>
Date: Fri, 10 Apr 2026 00:55:07 +0000
net: update metadata
Diffstat:
3 files changed, 24 insertions(+), 16 deletions(-)
diff --git a/crates/net/Cargo.toml b/crates/net/Cargo.toml
@@ -7,11 +7,11 @@ authors = [
]
rust-version.workspace = true
license.workspace = true
-description = "unified networking interface for the radroots sdk"
+description = "Unified networking facade over radroots-net-core"
repository.workspace = true
homepage.workspace = true
documentation = "https://docs.rs/radroots_net"
-readme.workspace = true
+readme = "README"
[features]
default = ["std"]
diff --git a/crates/net/README b/crates/net/README
@@ -0,0 +1,22 @@
+# radroots_net
+
+This is the README for `radroots_net`, which re-exports the unified networking
+facade from `radroots_net_core` for the `radroots` core libraries.
+
+## Overview
+
+ * reexports `radroots_net_core` as the public `core` module;
+ * forwards the `std`, `rt`, and aggregate feature surface used by networking
+ consumers;
+ * adds no additional networking logic beyond the reexport layer;
+ * keeps the workspace-facing network entry point separate from the lower-level
+ implementation crate.
+
+## Copyright
+
+Except as otherwise noted, all files in the `radroots_net` 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_net` distribution.
diff --git a/crates/net/README.md b/crates/net/README.md
@@ -1,14 +0,0 @@
-# radroots_net
-
-Unified networking interface for the Rad Roots SDK.
-
-## Goals
-
-- define a stable entry surface over `radroots_net_core` primitives
-- keep network dependency wiring deterministic across build targets
-- support a minimal integration path for SDK consumers
-- provide reusable networking entry points for higher-level Rad Roots crates
-
-## License
-
-Licensed under AGPL-3.0. See LICENSE.