diff --git a/.github/workflows/rav1e.yml b/.github/workflows/rav1e.yml index 7afa281991..a074ecee66 100644 --- a/.github/workflows/rav1e.yml +++ b/.github/workflows/rav1e.yml @@ -126,7 +126,7 @@ jobs: tar xj -C $HOME/.cargo/bin - name: Install Intel SDE if: matrix.conf == 'grcov-codecov' - uses: petarpetrovt/setup-sde@v2.2 + uses: petarpetrovt/setup-sde@v2.3 - name: Install ${{ matrix.toolchain }} uses: dtolnay/rust-toolchain@master with: diff --git a/Cargo.lock b/Cargo.lock index db30924417..f882b85857 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -767,6 +767,15 @@ dependencies = [ "either", ] +[[package]] +name = "itertools" +version = "0.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "25db6b064527c5d482d0423354fcd07a89a2dfe07b67892e62411946db7f07b0" +dependencies = [ + "either", +] + [[package]] name = "itoa" version = "1.0.9" @@ -1271,7 +1280,7 @@ dependencies = [ "fern", "image", "interpolate_name", - "itertools 0.11.0", + "itertools 0.12.0", "ivf", "libc", "libdav1d-sys", diff --git a/Cargo.toml b/Cargo.toml index 9dad597404..c9d2da4c69 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -104,7 +104,7 @@ byteorder = { version = "1.5.0", optional = true } log = "0.4" console = { version = "0.15", optional = true } fern = { version = "0.6", optional = true } -itertools = "0.11" +itertools = "0.12" simd_helpers = "0.1" wasm-bindgen = { version = "0.2.88", optional = true } nom = { version = "7.1.3", optional = true }