diff --git a/Cargo.lock b/Cargo.lock index 4f5a492585a2..676a42529641 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2070,9 +2070,9 @@ dependencies = [ [[package]] name = "gif" -version = "0.14.0" +version = "0.14.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f954a9e9159ec994f73a30a12b96a702dde78f5547bcb561174597924f7d4162" +checksum = "f5df2ba84018d80c213569363bdcd0c64e6933c67fe4c1d60ecf822971a3c35e" dependencies = [ "color_quant", "weezl", @@ -2896,9 +2896,9 @@ dependencies = [ [[package]] name = "log" -version = "0.4.28" +version = "0.4.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432" +checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" [[package]] name = "loom" @@ -4143,7 +4143,7 @@ dependencies = [ "once_cell", "socket2", "tracing", - "windows-sys 0.59.0", + "windows-sys 0.60.2", ] [[package]] @@ -4321,9 +4321,9 @@ checksum = "19b30a45b0cd0bcca8037f3d0dc3421eaf95327a17cad11964fb8179b4fc4832" [[package]] name = "reqwest" -version = "0.12.24" +version = "0.12.25" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d0946410b9f7b082a427e4ef5c8ff541a88b357bc6c637c40db3a68ac70a36f" +checksum = "b6eff9328d40131d43bd911d42d79eb6a47312002a4daefc9e37f17e74a7701a" dependencies = [ "base64", "bytes", @@ -5176,9 +5176,9 @@ dependencies = [ [[package]] name = "slotmap" -version = "1.0.7" +version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a" +checksum = "bdd58c3c93c3d278ca835519292445cb4b0d4dc59ccfdf7ceadaab3f8aeb4038" dependencies = [ "version_check", ] @@ -5747,9 +5747,9 @@ dependencies = [ [[package]] name = "tower-http" -version = "0.6.6" +version = "0.6.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2" +checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8" dependencies = [ "bitflags 2.10.0", "bytes", diff --git a/Cargo.toml b/Cargo.toml index d679b92664ae..e5cbf7a6051c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -58,7 +58,7 @@ clap = { version = "4.5.53", features = ["derive"] } cpal = "0.16.0" anyhow = "1.0" gc-arena = { git = "https://github.com/kyren/gc-arena.git", rev = "08e08414249d5914dfc3b402d7eadc133e00ce56" } -slotmap = "1.0.7" +slotmap = "1.1.1" async-channel = "2.5.0" bitflags = "2.10.0" bytemuck = "1.24.0" diff --git a/frontend-utils/Cargo.toml b/frontend-utils/Cargo.toml index 6c7194c44ddd..ba6fc2cd964e 100644 --- a/frontend-utils/Cargo.toml +++ b/frontend-utils/Cargo.toml @@ -27,7 +27,7 @@ ruffle_render = { path = "../render", default-features = false } async-channel = { workspace = true } async-io = { version = "2.6.0", optional = true } futures-lite = "2.6.1" -reqwest = { version = "0.12.24", default-features = false, features = [ +reqwest = { version = "0.12.25", default-features = false, features = [ "rustls-tls", "cookies", "charset", diff --git a/render/Cargo.toml b/render/Cargo.toml index 3d3e318c2875..2be6a036d38a 100644 --- a/render/Cargo.toml +++ b/render/Cargo.toml @@ -15,7 +15,7 @@ ruffle_wstr = { path = "../wstr" } swf = { path = "../swf"} pixel_bender = { path = "pixel_bender"} tracing = { workspace = true } -gif = "0.14.0" +gif = "0.14.1" png = "0.18.0" flate2 = { workspace = true } smallvec = { workspace = true } diff --git a/video/external/Cargo.toml b/video/external/Cargo.toml index f5a3f13bbbe5..12c8e15268b1 100644 --- a/video/external/Cargo.toml +++ b/video/external/Cargo.toml @@ -18,7 +18,7 @@ thiserror = { workspace = true } # Needed for OpenH264: libloading = { version = "0.8.9", optional = true } -reqwest = { version = "0.12.24", default-features = false, features = ["blocking"], optional = true } +reqwest = { version = "0.12.25", default-features = false, features = ["blocking"], optional = true } hex = { version = "0.4.3", optional = true } bzip2 = { version = "0.6.1", features = ["static"], optional = true } tempfile = { workspace = true, optional = true }