Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump MSRV up to 1.63 #114

Merged
merged 2 commits into from
Feb 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 1 addition & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
fail-fast: false
matrix:
rust:
- 1.37.0 # MSRV
- 1.63.0 # MSRV
- stable
- beta
- nightly
Expand All @@ -37,15 +37,6 @@ jobs:
with:
toolchain: ${{ matrix.rust }}

- name: MSRV dependencies
if: matrix.rust == '1.37.0'
run: |
cargo generate-lockfile
cargo update -p serde_json --precise 1.0.99
cargo update -p serde --precise 1.0.156
cargo update -p quote --precise 1.0.30
cargo update -p proc-macro2 --precise 1.0.65
- name: Build (no_std)
run: cargo build --no-default-features

Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
name = "either"
version = "1.13.0"
authors = ["bluss"]
edition = "2018"
rust-version = "1.37"
edition = "2021"
rust-version = "1.63.0"

license = "MIT OR Apache-2.0"
repository = "https://github.com/rayon-rs/either"
Expand Down