Skip to content

Commit

Permalink
Bump MSRV to 1.63
Browse files Browse the repository at this point in the history
  • Loading branch information
dhardy committed Dec 18, 2024
1 parent 6b4c26b commit ecd48f6
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu
variant: MSRV
toolchain: 1.61.0
toolchain: 1.63.0
- os: ubuntu-latest
deps: sudo apt-get update ; sudo apt install gcc-multilib
target: i686-unknown-linux-gnu
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![Test Status](https://github.com/rust-random/rngs/workflows/Tests/badge.svg?event=push)](https://github.com/rust-random/rngs/actions)
[![Book](https://img.shields.io/badge/book-master-yellow.svg)](https://rust-random.github.io/book/)
[![API](https://img.shields.io/badge/api-master-yellow.svg)](https://rust-random.github.io/rand)
[![Minimum rustc version](https://img.shields.io/badge/rustc-1.61-lightgray.svg)](https://github.com/rust-random/rngs#rust-version-requirements)
[![Minimum rustc version](https://img.shields.io/badge/rustc-1.63-lightgray.svg)](https://github.com/rust-random/rngs#rust-version-requirements)

Extra random number generators provided by the Rust Random project.
The main repository, [rust-random/rand](https://github.com/rust-random/rand),
Expand Down
2 changes: 1 addition & 1 deletion benches/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "benches"
version = "0.1.0"
edition = "2021"
rust-version = "1.61"
rust-version = "1.63"
publish = false

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion rand_hc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ HC128 random number generator
keywords = ["random", "rng", "hc128"]
categories = ["algorithms", "no-std"]
edition = "2021"
rust-version = "1.61"
rust-version = "1.63"

[dependencies]
rand_core = "=0.9.0-beta.1"
2 changes: 1 addition & 1 deletion rand_isaac/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ISAAC random number generator
keywords = ["random", "rng", "isaac"]
categories = ["algorithms", "no-std"]
edition = "2021"
rust-version = "1.61"
rust-version = "1.63"

[features]
serde = ["dep:serde", "rand_core/serde"]
Expand Down
2 changes: 1 addition & 1 deletion rand_jitter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ documentation = "https://docs.rs/rand_jitter"
description = "Random number generator based on timing jitter"
keywords = ["random", "rng", "os"]
edition = "2021"
rust-version = "1.61"
rust-version = "1.63"

[features]
std = ["rand_core/std"]
Expand Down
2 changes: 1 addition & 1 deletion rand_xorshift/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Xorshift random number generator
keywords = ["random", "rng", "xorshift"]
categories = ["algorithms", "no-std"]
edition = "2021"
rust-version = "1.61"
rust-version = "1.63"

[features]
serde = ["dep:serde"]
Expand Down
2 changes: 1 addition & 1 deletion rand_xoshiro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ description = "Xoshiro, xoroshiro and splitmix64 random number generators"
keywords = ["random", "rng"]
categories = ["algorithms"]
edition = "2021"
rust-version = "1.61"
rust-version = "1.63"

[features]
serde = ["dep:serde"]
Expand Down

0 comments on commit ecd48f6

Please sign in to comment.