Skip to content
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
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,9 @@ jobs:
if: steps.rewatch-build-cache.outputs.cache-hit != 'true'
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
toolchain: 1.88.0
targets: ${{ matrix.rust-target }}
components: clippy, rustfmt

- name: Build rewatch
if: steps.rewatch-build-cache.outputs.cache-hit != 'true'
Expand Down
2 changes: 1 addition & 1 deletion rewatch/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "rescript"
version = "12.0.0-beta.12"
edition = "2024"
rust-version = "1.85"
rust-version = "1.88"

[dependencies]
ahash = "0.8.3"
Expand Down
2 changes: 1 addition & 1 deletion rewatch/src/build/parse.rs
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ pub fn generate_asts(
&build_state.bsc_path,
) {
has_failure = true;
stderr.push_str(&format!("{}\n", err));
stderr.push_str(&format!("{err}\n"));
}
let mlmap_hash_after = helpers::compute_file_hash(Path::new(&compile_path));

Expand Down
Loading