Skip to content

Commit 191f645

Browse files
committed
Bump msrv
1 parent 7c61da5 commit 191f645

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

.github/workflows/rav1e.yml

+10-10
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ jobs:
4646
version: 2.15
4747

4848
# Minimum version in Cargo.toml
49-
- name: Install Rust 1.74.0
50-
uses: dtolnay/rust-toolchain@1.74.0
49+
- name: Install Rust 1.83.0
50+
uses: dtolnay/rust-toolchain@1.83.0
5151
with:
52-
targets: wasm32-unknown-unknown, wasm32-wasi
52+
targets: wasm32-unknown-unknown, wasm32-wasip1-threads
5353

5454
- uses: Swatinem/rust-cache@v2
5555
with:
@@ -68,7 +68,7 @@ jobs:
6868
- name: Run cargo check (wasi)
6969
run: >
7070
cargo check
71-
--target wasm32-wasi
71+
--target wasm32-wasip1-threads
7272
--no-default-features
7373
7474
wasi:
@@ -78,7 +78,7 @@ jobs:
7878
env:
7979
CARGO_INCREMENTAL: 0
8080
RUSTFLAGS: '-Dwarnings'
81-
CARGO_TARGET_WASM32_WASI_RUNNER: wasmtime
81+
CARGO_TARGET_WASM32_WASIP1_THREADS_RUNNER: wasmtime
8282

8383
steps:
8484
- uses: actions/checkout@v4
@@ -103,7 +103,7 @@ jobs:
103103
matrix:
104104
conf:
105105
- beta-build
106-
- 1.74.0-tests
106+
- msrv-tests
107107
- aom-tests
108108
- dav1d-tests
109109
- no-asm-tests
@@ -118,8 +118,8 @@ jobs:
118118
include:
119119
- conf: beta-build
120120
toolchain: beta
121-
- conf: 1.74.0-tests
122-
toolchain: 1.74.0
121+
- conf: msrv-tests
122+
toolchain: 1.83.0
123123
- conf: aom-tests
124124
toolchain: stable
125125
- conf: dav1d-tests
@@ -221,8 +221,8 @@ jobs:
221221
- name: Start sccache server
222222
run: |
223223
sccache --start-server
224-
- name: Run 1.74.0 tests
225-
if: matrix.toolchain == '1.74.0' && matrix.conf == '1.74.0-tests'
224+
- name: Run msrv tests
225+
if: matrix.conf == 'msrv-tests'
226226
run: |
227227
cargo test --workspace --verbose \
228228
--features=decode_test,decode_test_dav1d,quick_test,capi

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "rav1e"
33
version = "0.7.0"
44
authors = ["Thomas Daede <[email protected]>"]
55
edition = "2021"
6-
rust-version = "1.74.0"
6+
rust-version = "1.83.0"
77
build = "build.rs"
88
include = [
99
"/Cargo.toml",

clippy.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
too-many-arguments-threshold = 16
22
cognitive-complexity-threshold = 40
33
trivial-copy-size-limit = 16 # 128-bits = 2 64-bit registers
4-
msrv = "1.74"
4+
msrv = "1.83"

rustfmt.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
fn_args_layout = "Compressed"
1+
fn_params_layout = "Compressed"
22
force_explicit_abi = false
33
max_width = 79
44
tab_spaces = 2

0 commit comments

Comments
 (0)