Skip to content

Commit ed8a4f4

Browse files
Bump minimum toolchain requirements
1 parent 21d6d4d commit ed8a4f4

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ implementations of graphics functions, and the addition of missing libraries.
5656
## Dependencies
5757

5858
To compile for the PSP, you will need a Rust **nightly** version equal to or
59-
later than `2022-05-22` and the `rust-src` component. Please install Rust using
59+
later than `2022-06-11` and the `rust-src` component. Please install Rust using
6060
https://rustup.rs/
6161

6262
Use the following if you are new to Rust. (Feel free to set an override manually

cargo-psp/src/main.rs

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,11 +120,13 @@ impl fmt::Display for CommitDate {
120120
}
121121
}
122122

123-
// Minimum 2022-05-22, remember to update both commit date and version too, below.
124-
const MINIMUM_COMMIT_DATE: CommitDate = CommitDate { year: 2022, month: 05, day: 22 };
123+
// Minimum 2022-06-11, remember to update both commit date and version too,
124+
// below. Note that the `day` field lags by one day, as the toolchain always
125+
// contains the previous days' nightly rustc.
126+
const MINIMUM_COMMIT_DATE: CommitDate = CommitDate { year: 2022, month: 06, day: 10 };
125127
const MINIMUM_RUSTC_VERSION: Version = Version {
126128
major: 1,
127-
minor: 62,
129+
minor: 63,
128130
patch: 0,
129131
pre: Vec::new(),
130132
build: Vec::new(),

ci/concourse/build-rust.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ image_resource:
1111
tag: 1.44-slim
1212

1313
params:
14-
RUSTFLAGS: "-C link-dead-code"
15-
RUSTUP_TOOLCHAIN: nightly-2022-05-22
14+
RUSTUP_TOOLCHAIN: nightly-2022-06-11
1615

1716
inputs:
1817
- name: repo

0 commit comments

Comments
 (0)