From eed75ca4d6d547d2a5844dfb8ce3e7df5e065a58 Mon Sep 17 00:00:00 2001 From: Laurenz Date: Mon, 21 Jul 2025 13:49:01 +0200 Subject: [PATCH] Bump MSRV to 1.88 --- .github/workflows/ci.yml | 6 +++--- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 369a2d5ee..7180dcad9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -88,7 +88,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@1.83.0 + - uses: dtolnay/rust-toolchain@1.88.0 - uses: Swatinem/rust-cache@v2 - run: cargo check --workspace @@ -99,7 +99,7 @@ jobs: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@master with: - toolchain: nightly-2024-10-29 + toolchain: nightly-2025-05-10 - uses: Swatinem/rust-cache@v2 - run: cargo install --locked cargo-fuzz@0.12.0 - run: cd tests/fuzz && cargo fuzz build --dev @@ -112,6 +112,6 @@ jobs: - uses: dtolnay/rust-toolchain@master with: components: miri - toolchain: nightly-2024-10-29 + toolchain: nightly-2025-05-10 - uses: Swatinem/rust-cache@v2 - run: cargo miri test -p typst-library test_miri diff --git a/Cargo.toml b/Cargo.toml index 63ea32b94..0a6678a6a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ resolver = "2" [workspace.package] version = "0.13.1" -rust-version = "1.83" # also change in ci.yml +rust-version = "1.88" # also change in ci.yml authors = ["The Typst Project Developers"] edition = "2021" homepage = "https://typst.app"