Skip to content

Commit 32b4a7e

Browse files
Bump workspace MSRV to 1.81
Rust stablized `core::error::Error` in 1.81, so this will allow us to unconditionally implement that trait for error types without requiring std. Dropped `CARGO_REGISTRIES_CRATES_IO_PROTOCOL` from the MSRV CI job, since sparse is the default in newer releases.
1 parent 926876a commit 32b4a7e

File tree

8 files changed

+17
-8
lines changed

8 files changed

+17
-8
lines changed

.github/workflows/ci.yaml

+1-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ jobs:
2424
name: MSRV
2525
runs-on: ubuntu-latest
2626
env:
27-
rust_version: "1.68"
28-
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
27+
rust_version: "1.81"
2928
steps:
3029
- uses: actions/checkout@v4
3130
- run: rustup toolchain install $rust_version --profile minimal --no-self-update

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ resolver = "2"
1919
edition = "2021"
2020
license = "MIT OR Apache-2.0"
2121
repository = "https://github.com/google/gpt-disk-rs"
22-
rust-version = "1.68"
22+
rust-version = "1.81"
2323

2424
[workspace.dependencies]
2525
bytemuck = { version = "1.4.0", default-features = false }

gpt_disk_io/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Unreleased
2+
3+
* MSRV increased to 1.81.
4+
15
# 0.16.1
26

37
* Derive `PartialEq` for `DiskError`.

gpt_disk_io/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ See also the [`gpt_disk_types`] package.
1818

1919
## Minimum Supported Rust Version (MSRV)
2020

21-
The current MSRV is 1.68.
21+
The current MSRV is 1.81.
2222

2323
## License
2424

gpt_disk_types/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Unreleased
2+
3+
* MSRV increased to 1.81.
4+
15
# 0.16.0
26

37
* Bump MSRV to 1.68.

gpt_disk_types/README.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,7 @@ No features are enabled by default.
2525

2626
## Minimum Supported Rust Version (MSRV)
2727

28-
The current MSRV is 1.68.
29-
30-
[`dep:`]: https://blog.rust-lang.org/2022/04/07/Rust-1.60.0.html#new-syntax-for-cargo-features
28+
The current MSRV is 1.81.
3129

3230
## License
3331

uguid/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Unreleased
2+
3+
* MSRV increased to 1.81.
4+
15
# 2.2.0
26

37
* Added `Variant` enum and `Guid::variant` method.

uguid/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ No features are enabled by default.
1818

1919
## Minimum Supported Rust Version (MSRV)
2020

21-
The current MSRV is 1.68.
21+
The current MSRV is 1.81.
2222

2323
## License
2424

0 commit comments

Comments
 (0)