Skip to content

Commit 2c84fb6

Browse files
authored
Bump msrv to 1.65.0 (#1743)
* Bump msrv to 1.65.0 Signed-off-by: Jiahao XU <[email protected]> * Fix clippy v1.65.0 warnings Signed-off-by: Jiahao XU <[email protected]> --------- Signed-off-by: Jiahao XU <[email protected]>
1 parent 6fffb2a commit 2c84fb6

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
with:
2727
components: ${{ matrix.component }}
2828
# Oldest supported version, keep in sync with README.md
29-
toolchain: "1.64.0"
29+
toolchain: "1.65.0"
3030

3131
- name: clippy version
3232
run: cargo clippy --version
@@ -46,10 +46,10 @@ jobs:
4646
include:
4747
- os: ubuntu-20.04
4848
# Oldest supported version, keep in sync with README.md
49-
rustc: "1.64.0"
49+
rustc: "1.65.0"
5050
- os: ubuntu-22.04
5151
# Oldest supported version, keep in sync with README.md
52-
rustc: "1.64.0"
52+
rustc: "1.65.0"
5353
extra_desc: dist-server
5454
extra_args: --no-default-features --features=dist-tests test_dist_ -- --test-threads 1
5555
- os: ubuntu-20.04
@@ -64,7 +64,7 @@ jobs:
6464
- os: macOS-11
6565
- os: windows-2019
6666
# Oldest supported version, keep in sync with README.md
67-
rustc: "1.64.0"
67+
rustc: "1.65.0"
6868
- os: windows-2019
6969
rustc: nightly
7070
allow_failure: true

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ readme = "README.md"
88
categories = ["command-line-utilities", "development-tools::build-utils"]
99
keywords = ["ccache"]
1010
edition = "2021"
11-
rust-version = "1.64"
11+
rust-version = "1.65"
1212

1313
[[bin]]
1414
name = "sccache"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ By default, sccache will fail your build if it fails to successfully communicate
144144
Build Requirements
145145
------------------
146146

147-
sccache is a [Rust](https://www.rust-lang.org/) program. Building it requires `cargo` (and thus `rustc`). sccache currently requires **Rust 1.64.0**. We recommend you install Rust via [Rustup](https://rustup.rs/).
147+
sccache is a [Rust](https://www.rust-lang.org/) program. Building it requires `cargo` (and thus `rustc`). sccache currently requires **Rust 1.65.0**. We recommend you install Rust via [Rustup](https://rustup.rs/).
148148

149149
Build
150150
-----

src/dist/pkg.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ mod toolchain_imp {
138138
// Although by not following symlinks we could break a custom
139139
// constructed toolchain with links everywhere, this is just a
140140
// best-effort auto packaging
141-
for entry in WalkDir::new(&dir_path).follow_links(false) {
141+
for entry in WalkDir::new(dir_path).follow_links(false) {
142142
let entry = entry?;
143143
let file_type = entry.file_type();
144144
if file_type.is_dir() {

0 commit comments

Comments
 (0)