From 9d1ac9f62996db32e5bd328d71828d944ffc1de4 Mon Sep 17 00:00:00 2001 From: Hans Larsen Date: Fri, 20 Dec 2024 15:26:16 -0800 Subject: [PATCH] Move MSRV to 1.83 --- .github/workflows/rust.yml | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index b7689fb3299..4ed54ee3a21 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -10,7 +10,7 @@ on: - main - releases/** merge_group: - types: [checks_requested] + types: [ checks_requested ] concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} @@ -34,7 +34,7 @@ jobs: with: # TODO: There seems to be an issue with the 1.83.0 toolchain and tarpaulin. # See: https://github.com/xd009642/tarpaulin/issues/1642 - toolchain: 1.82.0 + toolchain: 1.83.0 - uses: Swatinem/rust-cache@v2 with: diff --git a/Cargo.toml b/Cargo.toml index fc619a70f4d..8887c5d8698 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ exclude = [ [workspace.package] edition = "2021" version = "0.20.0" -rust-version = "1.82.0" +rust-version = "1.83.0" authors = ["boa-dev"] repository = "https://github.com/boa-dev/boa" license = "Unlicense OR MIT"