From 392e5918208dbe3b864b919594b4e92008d0d9d0 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Sun, 29 Oct 2023 23:16:53 +0000 Subject: [PATCH] chore(local-channel): prepare release 0.1.5 --- bytestring/Cargo.toml | 2 +- bytestring/README.md | 2 +- bytestring/src/lib.rs | 4 +++- local-channel/src/lib.rs | 2 ++ 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/bytestring/Cargo.toml b/bytestring/Cargo.toml index f3efdbab..796e3cb3 100644 --- a/bytestring/Cargo.toml +++ b/bytestring/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "bytestring" version = "1.3.0" +description = "A UTF-8 encoded read-only string using `Bytes` as storage" authors = [ "Nikolay Kim ", "Rob Ede ", ] -description = "An immutable UTF-8 encoded string using Bytes as storage" keywords = ["string", "bytes", "utf8", "web", "actix"] categories = ["no-std", "web-programming"] homepage = "https://actix.rs" diff --git a/bytestring/README.md b/bytestring/README.md index 9a53272d..dfc445d0 100644 --- a/bytestring/README.md +++ b/bytestring/README.md @@ -1,6 +1,6 @@ # `bytestring` -> A UTF-8 encoded read-only string using Bytes as storage. +> A UTF-8 encoded read-only string using `Bytes` as storage. diff --git a/bytestring/src/lib.rs b/bytestring/src/lib.rs index 9c0007a2..80ab085e 100644 --- a/bytestring/src/lib.rs +++ b/bytestring/src/lib.rs @@ -1,4 +1,6 @@ -//! A UTF-8 encoded read-only string using Bytes as storage. +//! A UTF-8 encoded read-only string using `Bytes` as storage. +//! +//! See docs for [`ByteString`]. #![no_std] #![deny(rust_2018_idioms, nonstandard_style)] diff --git a/local-channel/src/lib.rs b/local-channel/src/lib.rs index e3f493ad..f89bfdb4 100644 --- a/local-channel/src/lib.rs +++ b/local-channel/src/lib.rs @@ -1,4 +1,6 @@ //! Non-thread-safe channels. +//! +//! See docs for [`mpsc::channel()`]. #![deny(rust_2018_idioms, nonstandard_style)] #![warn(future_incompatible, missing_docs)]