Skip to content

Commit 2899049

Browse files
authoredJan 16, 2025··
chore: bump to rust version 1.83 (#1857)
## Summary Bumped MSRV to 1.83 and made small changes to appease new Clippy lints. ## Background Rust 1.83 solves some bizarre Clippy false positives, improved lints also revealed some nit improvement points. Bumping MSRV also doesn't have a huge cost, since we don't have many downstream users. ## Changes - Bumped MSRV. - Changed small bits to appease Clippy, mostly changing to use lifetime elisions. - rustfmt made a bunch of changes with the new version ## Testing Passing all tests. ## Changelogs Changelogs updated for crates which have already been released. ## Related Issues closes #1580
1 parent fd94ec0 commit 2899049

File tree

90 files changed

+669
-724
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+669
-724
lines changed
 

‎.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
uses: taiki-e/install-action@just
7373
- uses: dtolnay/rust-toolchain@master
7474
with:
75-
toolchain: nightly-2024-09-15
75+
toolchain: nightly-2024-10-03
7676
components: rustfmt
7777
- name: run rustfmt
7878
run: just lint rust-fmt

‎.github/workflows/reusable-build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ env:
1414
REGISTRY: ghcr.io
1515
FULL_REF: ${{ inputs.tag && format('refs/tags/{0}', inputs.tag) || github.ref }}
1616
# This must match the entry in rust-toolchain.toml at the repository root
17-
RUSTUP_TOOLCHAIN: "1.81.0"
17+
RUSTUP_TOOLCHAIN: "1.83.0"
1818

1919
jobs:
2020
upload-binaries:

0 commit comments

Comments
 (0)
Please sign in to comment.