From 82271862fe024131b15444fe4eafc0d7f0583542 Mon Sep 17 00:00:00 2001 From: wep21 Date: Thu, 4 Jun 2026 01:37:05 +0900 Subject: [PATCH] chore(deps): support ffmpeg 8 Signed-off-by: wep21 --- .github/workflows/rust-ci.yml | 8 ++++---- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/rust-ci.yml b/.github/workflows/rust-ci.yml index 6d39d52..6592f4b 100644 --- a/.github/workflows/rust-ci.yml +++ b/.github/workflows/rust-ci.yml @@ -13,7 +13,7 @@ jobs: lints: name: Clippy Matrix (${{ matrix.feature }}) runs-on: ubuntu-latest - container: jrottenberg/ffmpeg:7.1-ubuntu + container: jrottenberg/ffmpeg:8.1-ubuntu strategy: fail-fast: false matrix: @@ -59,7 +59,7 @@ jobs: check: name: cargo-check runs-on: ubuntu-latest - container: jrottenberg/ffmpeg:7.1-ubuntu + container: jrottenberg/ffmpeg:8.1-ubuntu steps: - name: Checkout @@ -79,7 +79,7 @@ jobs: test: name: cargo-test runs-on: ubuntu-latest - container: jrottenberg/ffmpeg:7.1-ubuntu + container: jrottenberg/ffmpeg:8.1-ubuntu steps: - name: Checkout @@ -104,7 +104,7 @@ jobs: strategy: matrix: - ffmpeg_version: [ "5.0", "5.1", "6.0", "6.1", "7.0", "7.1" ] + ffmpeg_version: [ "5.0", "5.1", "6.0", "6.1", "7.0", "7.1", "8.0", "8.1" ] fail-fast: false steps: diff --git a/Cargo.toml b/Cargo.toml index 01a34d9..eae6725 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -38,7 +38,7 @@ regex = { version = "1.12.2" } tempfile = { version = "3.23.0" } fast_image_resize = { version = "5.5.0", default-features = false, features = ["image", "rayon"] } minifb = { version = "0.28.0", optional = true } -video-rs = { version = "0.10.5", features = ["ndarray"], optional = true } +video-rs = { version = "0.11.0", features = ["ndarray"], optional = true } ndarray-npy = { version = "0.10", optional = true } ort = { version = "=2.0.0-rc.12", default-features = false, features = [ "tls-rustls",