Skip to content

Commit

Permalink
[meta] update MSRV to 1.72
Browse files Browse the repository at this point in the history
ahash requires it; see tkaitchuck/aHash#195.
  • Loading branch information
sunshowers committed Feb 2, 2024
1 parent a546046 commit 7400a66
Show file tree
Hide file tree
Showing 12 changed files with 15 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-14, windows-latest]
rust-version: ["1.70", stable]
rust-version: ["1.72", stable]
fail-fast: false
env:
RUSTFLAGS: -D warnings
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-14, windows-latest]
rust-version: ["1.70", stable]
rust-version: ["1.72", stable]
fail-fast: false
env:
RUSTFLAGS: -D warnings
Expand Down
3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ members = [
ahash = "0.8.7"
guppy-workspace-hack = "0.1.0"

[workspace.package]
rust-version = "1.72"

[patch.crates-io.guppy-workspace-hack]
path = "workspace-hack"

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ metadata`](https://doc.rust-lang.org/cargo/commands/cargo-metadata.html) format.

## Minimum supported Rust version

The minimum supported Rust version (MSRV) is **Rust 1.70**.
The minimum supported Rust version (MSRV) is **Rust 1.72**.

While a crate is pre-release status (0.x.x) it may have its MSRV bumped in a patch release. Once a crate has reached
1.x, any MSRV bump will be accompanied with a new minor version.
Expand Down
2 changes: 1 addition & 1 deletion guppy-summaries/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ exclude = [
# Readme template that doesn't need to be included.
"README.tpl",
]
rust-version = "1.70"
rust-version.workspace = true

[package.metadata.docs.rs]
all-features = true
Expand Down
2 changes: 1 addition & 1 deletion guppy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ exclude = [
# Readme template that doesn't need to be included.
"README.tpl",
]
rust-version = "1.70"
rust-version.workspace = true

[package.metadata.docs.rs]
all-features = true
Expand Down
2 changes: 1 addition & 1 deletion target-spec-miette/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ readme = "README.md"
keywords = ["cargo", "targets", "platforms", "miette"]
categories = ["development-tools"]
edition = "2021"
rust-version = "1.70"
rust-version.workspace = true

[dependencies]
target-spec = { version = "3.0.1", path = "../target-spec" }
Expand Down
2 changes: 1 addition & 1 deletion target-spec/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ readme = "README.md"
keywords = ["cargo", "targets", "platforms", "os", "cpu"]
categories = ["development-tools", "parser-implementations"]
edition = "2021"
rust-version = "1.70"
rust-version.workspace = true

[package.metadata.docs.rs]
all-features = true
Expand Down
2 changes: 1 addition & 1 deletion target-spec/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ For more advanced usage, see `Platform` and `TargetSpec`.

The minimum supported Rust version (MSRV) is:
* For target-spec 3.0.x: **Rust 1.66**.
* Unreleased: **Rust 1.70**.
* Unreleased: **Rust 1.72**.

Within the 3.x series, MSRV bumps will be accompanied by a minor version update.

Expand Down
2 changes: 1 addition & 1 deletion target-spec/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
//!
//! The minimum supported Rust version (MSRV) is:
//! * For target-spec 3.0.x: **Rust 1.66**.
//! * Unreleased: **Rust 1.70**.
//! * Unreleased: **Rust 1.72**.
//!
//! Within the 3.x series, MSRV bumps will be accompanied by a minor version update.
//!
Expand Down
2 changes: 1 addition & 1 deletion tools/cargo-hakari/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ keywords = [
"guppy",
]
categories = ["development-tools::cargo-plugins"]
rust-version = "1.70"
rust-version.workspace = true

[dependencies]
camino = "1.1.6"
Expand Down
2 changes: 1 addition & 1 deletion tools/determinator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ include = [
# Include default rules with the package.
"default-rules.toml",
]
rust-version = "1.70"
rust-version.workspace = true

[dependencies]
ahash.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion tools/hakari/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ keywords = [
"guppy",
]
categories = ["development-tools"]
rust-version = "1.70"
rust-version.workspace = true

[package.metadata.docs.rs]
all-features = true
Expand Down

0 comments on commit 7400a66

Please sign in to comment.