From 725cf026b2395ab0d270807664e645a073111446 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?T=C3=96R=C3=96K=20Attila?= Date: Thu, 16 Jan 2025 23:58:23 +0100 Subject: [PATCH] chore: Bump h263-rs git ref to latest master --- Cargo.lock | 19 ++++++++++++++----- render/Cargo.toml | 2 +- video/software/Cargo.toml | 4 ++-- 3 files changed, 17 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9bcb0f8865ea..067e7805f943 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -380,7 +380,7 @@ dependencies = [ "bitflags 2.8.0", "cexpr", "clang-sys", - "itertools", + "itertools 0.13.0", "log", "prettyplease", "proc-macro2", @@ -2194,7 +2194,7 @@ dependencies = [ [[package]] name = "h263-rs" version = "0.1.0" -source = "git+https://github.com/ruffle-rs/h263-rs?rev=07468962d9c57c0780f3e9abf046186f5be58a26#07468962d9c57c0780f3e9abf046186f5be58a26" +source = "git+https://github.com/ruffle-rs/h263-rs?rev=b3f905511acc7b80861dac45fdc5ca913b6029e5#b3f905511acc7b80861dac45fdc5ca913b6029e5" dependencies = [ "bitflags 2.8.0", "lazy_static", @@ -2205,16 +2205,16 @@ dependencies = [ [[package]] name = "h263-rs-deblock" version = "0.1.0" -source = "git+https://github.com/ruffle-rs/h263-rs?rev=07468962d9c57c0780f3e9abf046186f5be58a26#07468962d9c57c0780f3e9abf046186f5be58a26" +source = "git+https://github.com/ruffle-rs/h263-rs?rev=b3f905511acc7b80861dac45fdc5ca913b6029e5#b3f905511acc7b80861dac45fdc5ca913b6029e5" dependencies = [ - "itertools", + "itertools 0.14.0", "wide", ] [[package]] name = "h263-rs-yuv" version = "0.1.0" -source = "git+https://github.com/ruffle-rs/h263-rs?rev=07468962d9c57c0780f3e9abf046186f5be58a26#07468962d9c57c0780f3e9abf046186f5be58a26" +source = "git+https://github.com/ruffle-rs/h263-rs?rev=b3f905511acc7b80861dac45fdc5ca913b6029e5#b3f905511acc7b80861dac45fdc5ca913b6029e5" dependencies = [ "bytemuck", "wide", @@ -2568,6 +2568,15 @@ dependencies = [ "either", ] +[[package]] +name = "itertools" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" +dependencies = [ + "either", +] + [[package]] name = "itoa" version = "1.0.14" diff --git a/render/Cargo.toml b/render/Cargo.toml index 0e570d65681e..e30007eef1fc 100644 --- a/render/Cargo.toml +++ b/render/Cargo.toml @@ -26,7 +26,7 @@ wasm-bindgen = { workspace = true, optional = true } enum-map = { workspace = true } serde = { workspace = true, features = ["derive"], optional = true } clap = { workspace = true, optional = true } -h263-rs-yuv = { git = "https://github.com/ruffle-rs/h263-rs", rev = "07468962d9c57c0780f3e9abf046186f5be58a26"} +h263-rs-yuv = { git = "https://github.com/ruffle-rs/h263-rs", rev = "b3f905511acc7b80861dac45fdc5ca913b6029e5"} num-traits = { workspace = true } num-derive = { workspace = true } byteorder = "1.5" diff --git a/video/software/Cargo.toml b/video/software/Cargo.toml index 62334df9e0ff..5f5d6d2b14b3 100644 --- a/video/software/Cargo.toml +++ b/video/software/Cargo.toml @@ -19,8 +19,8 @@ thiserror = { workspace = true } flate2 = { workspace = true } log = { workspace = true } -h263-rs = { git = "https://github.com/ruffle-rs/h263-rs", rev = "07468962d9c57c0780f3e9abf046186f5be58a26", optional = true } -h263-rs-deblock = { git = "https://github.com/ruffle-rs/h263-rs", rev = "07468962d9c57c0780f3e9abf046186f5be58a26", optional = true } +h263-rs = { git = "https://github.com/ruffle-rs/h263-rs", rev = "b3f905511acc7b80861dac45fdc5ca913b6029e5", optional = true } +h263-rs-deblock = { git = "https://github.com/ruffle-rs/h263-rs", rev = "b3f905511acc7b80861dac45fdc5ca913b6029e5", optional = true } nihav_core = { git = "https://github.com/ruffle-rs/nihav-vp6", rev = "83c7e1094d603d9fc1212d39d99abb17f3a3226b", optional = true } nihav_codec_support = { git = "https://github.com/ruffle-rs/nihav-vp6", rev = "83c7e1094d603d9fc1212d39d99abb17f3a3226b", optional = true } nihav_duck = { git = "https://github.com/ruffle-rs/nihav-vp6", rev = "83c7e1094d603d9fc1212d39d99abb17f3a3226b", optional = true }