From bdffa6779ad591cc347420ef69fd4e3780ed04c1 Mon Sep 17 00:00:00 2001 From: Ryan Lopopolo Date: Fri, 2 Jun 2023 10:46:17 -0700 Subject: [PATCH] Add no-std, no-alloc crates.io category metadata Prepare for v1.6.1 release. --- Cargo.toml | 4 ++-- README.md | 2 +- src/lib.rs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6e433d4..cdc96ec 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "qed" -version = "1.6.0" +version = "1.6.1" authors = ["Ryan Lopopolo "] license = "MIT" edition = "2021" @@ -11,7 +11,7 @@ documentation = "https://docs.rs/qed" homepage = "https://github.com/artichoke/qed" description = "Compile-time assertions" keywords = ["assert", "const", "no_std", "static"] -categories = ["no-std", "rust-patterns"] +categories = ["no-std", "no-std::no-alloc", "rust-patterns"] include = ["src/**/*", "tests/**/*", "LICENSE", "README.md"] [dependencies] diff --git a/README.md b/README.md index 3f8f084..81ec803 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -qed = "1.6.0" +qed = "1.6.1" ``` Then make compile time assertions like: diff --git a/src/lib.rs b/src/lib.rs index 21bbf68..b69b657 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -43,7 +43,7 @@ //! ``` #![no_std] -#![doc(html_root_url = "https://docs.rs/qed/1.6.0")] +#![doc(html_root_url = "https://docs.rs/qed/1.6.1")] // Ensure code blocks in `README.md` compile #[cfg(all(doctest, any(target_pointer_width = "32", target_pointer_width = "64")))]