Skip to content

Commit

Permalink
Merge pull request #200 from artichoke/lopopolo/crates.io-catagory-me…
Browse files Browse the repository at this point in the history
…ta-no-alloc

Add no-std, no-alloc crates.io category metadata
  • Loading branch information
lopopolo authored Jun 2, 2023
2 parents 8fcd52b + b5b1cf5 commit 8d9c44f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>", "Ryan Lopopolo <[email protected]>"]
license = "MIT OR Apache-2.0"
edition = "2018"
Expand All @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
Expand Down

0 comments on commit 8d9c44f

Please sign in to comment.