Skip to content

Commit

Permalink
Bump to rustc 1.74
Browse files Browse the repository at this point in the history
  • Loading branch information
shssoichiro committed Aug 14, 2024
1 parent e1db3b7 commit 0734ccf
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/rav1e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ jobs:
version: 2.15

# Minimum version in Cargo.toml
- name: Install Rust 1.70.0
uses: dtolnay/rust-toolchain@1.70.0
- name: Install Rust 1.74.0
uses: dtolnay/rust-toolchain@1.74.0
with:
targets: wasm32-unknown-unknown, wasm32-wasi

Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
matrix:
conf:
- beta-build
- 1.70.0-tests
- 1.74.0-tests
- aom-tests
- dav1d-tests
- no-asm-tests
Expand All @@ -118,8 +118,8 @@ jobs:
include:
- conf: beta-build
toolchain: beta
- conf: 1.70.0-tests
toolchain: 1.70.0
- conf: 1.74.0-tests
toolchain: 1.74.0
- conf: aom-tests
toolchain: stable
- conf: dav1d-tests
Expand Down Expand Up @@ -239,8 +239,8 @@ jobs:
- name: Start sccache server
run: |
sccache --start-server
- name: Run 1.70.0 tests
if: matrix.toolchain == '1.70.0' && matrix.conf == '1.70.0-tests'
- name: Run 1.74.0 tests
if: matrix.toolchain == '1.74.0' && matrix.conf == '1.74.0-tests'
run: |
cargo test --workspace --verbose \
--features=decode_test,decode_test_dav1d,quick_test,capi
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "rav1e"
version = "0.7.0"
authors = ["Thomas Daede <[email protected]>"]
edition = "2021"
rust-version = "1.70.0"
rust-version = "1.74.0"
build = "build.rs"
include = [
"/Cargo.toml",
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ For the foreseeable future, a weekly pre-release of rav1e will be [published](ht

### Toolchain: Rust

rav1e currently requires Rust 1.70.0 or later to build.
rav1e currently requires Rust 1.74.0 or later to build.

### Dependency: NASM
Some `x86_64`-specific optimizations require [NASM](https://nasm.us/) `2.14.02` or newer and are enabled by default.
Expand Down
2 changes: 1 addition & 1 deletion clippy.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
too-many-arguments-threshold = 16
cognitive-complexity-threshold = 40
trivial-copy-size-limit = 16 # 128-bits = 2 64-bit registers
msrv = "1.70"
msrv = "1.74"

0 comments on commit 0734ccf

Please sign in to comment.