From 90575ae7dbd9400b33677a48749861093ad3a1db Mon Sep 17 00:00:00 2001 From: fewensa Date: Wed, 2 Sep 2026 04:05:26 +0800 Subject: [PATCH] docs(rttp-protocol): clarify crate audience in README codeon: version: 1 authority: FWN-224 description: |- Add one sentence to the introductory section stating that this crate is intended for reusable HTTP protocol primitives rather than application-level client or server APIs. --- crates/rttp-protocol/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/rttp-protocol/README.md b/crates/rttp-protocol/README.md index 217892ab..18f9727b 100644 --- a/crates/rttp-protocol/README.md +++ b/crates/rttp-protocol/README.md @@ -2,6 +2,8 @@ Shared HTTP wire syntax and framing primitives for the rttp client and server crates. +This crate is intended for reusable HTTP protocol primitives, not application-level client or server APIs. + This crate owns shared, bounded HTTP wire syntax and framing primitives. It does not own application-level HTTP policy; that policy belongs to the client and server crates.