Skip to content

Commit a631b38

Browse files
authored
Use Rust 1.88 during CI (#7902)
1 parent 394ddaa commit a631b38

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,9 @@ jobs:
116116
if: steps.rewatch-build-cache.outputs.cache-hit != 'true'
117117
uses: dtolnay/rust-toolchain@master
118118
with:
119-
toolchain: stable
119+
toolchain: 1.88.0
120120
targets: ${{ matrix.rust-target }}
121+
components: clippy, rustfmt
121122

122123
- name: Build rewatch
123124
if: steps.rewatch-build-cache.outputs.cache-hit != 'true'

rewatch/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "rescript"
33
version = "12.0.0-beta.12"
44
edition = "2024"
5-
rust-version = "1.85"
5+
rust-version = "1.88"
66

77
[dependencies]
88
ahash = "0.8.3"

rewatch/src/build/parse.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ pub fn generate_asts(
199199
&build_state.bsc_path,
200200
) {
201201
has_failure = true;
202-
stderr.push_str(&format!("{}\n", err));
202+
stderr.push_str(&format!("{err}\n"));
203203
}
204204
let mlmap_hash_after = helpers::compute_file_hash(Path::new(&compile_path));
205205

0 commit comments

Comments
 (0)