From b5b1cf52c2b160ef54ecc8cfb79c7110691b8fe0 Mon Sep 17 00:00:00 2001 From: Ryan Lopopolo Date: Fri, 2 Jun 2023 10:30:19 -0700 Subject: [PATCH] Add no-std, no-alloc crates.io category metadata Prepare for v4.2.2 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 8e16a6c77..88e2f9162 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rand_mt" -version = "4.2.1" # remember to set `html_root_url` in `src/lib.rs`. +version = "4.2.2" # remember to set `html_root_url` in `src/lib.rs`. authors = ["David Creswick ", "Ryan Lopopolo "] license = "MIT OR Apache-2.0" edition = "2018" @@ -11,7 +11,7 @@ documentation = "https://docs.rs/rand_mt" homepage = "https://github.com/artichoke/rand_mt" description = "Reference Mersenne Twister random number generators." keywords = ["random", "rand", "rng", "mt"] -categories = ["algorithms", "no-std"] +categories = ["algorithms", "no-std", "no-std::no-alloc"] include = ["src/**/*", "tests/**/*", "LICENSE-*", "README.md"] [features] diff --git a/README.md b/README.md index dd2c16d5d..46159b963 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -rand_mt = "4.2.1" +rand_mt = "4.2.2" ``` Then create a RNG like: diff --git a/src/lib.rs b/src/lib.rs index fcd728496..cad30a3ee 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -102,7 +102,7 @@ )] //! -#![doc(html_root_url = "https://docs.rs/rand_mt/4.2.1")] +#![doc(html_root_url = "https://docs.rs/rand_mt/4.2.2")] #![no_std] #[cfg(feature = "std")]