diff --git a/Cargo.lock b/Cargo.lock index b5d5dc344..ab6baca8e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3468,9 +3468,9 @@ dependencies = [ [[package]] name = "num-traits" -version = "0.2.18" +version = "0.2.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a" +checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" dependencies = [ "autocfg", "libm", @@ -6860,15 +6860,18 @@ checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d" [[package]] name = "zip" -version = "1.1.3" +version = "1.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2e6cb8909b2e8e6733c9ef67d35be1a27105644d362aafb5f8b2ba395727adf6" +checksum = "9cc23c04387f4da0374be4533ad1208cbb091d5c11d070dfef13676ad6497164" dependencies = [ "arbitrary", - "byteorder", "crc32fast", "crossbeam-utils", + "displaydoc", "flate2", + "indexmap", + "num_enum", + "thiserror", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index cffb214d2..1e2ac5c10 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -65,7 +65,7 @@ image = { version = "0.25.1", default-features = false } js-sys = "0.3.69" log = "0.4" num-derive = "0.4.2" -num-traits = "0.2.18" +num-traits = "0.2.19" serde = "1.0.199" thiserror = "1.0" url = "2.5.0" diff --git a/frontend-utils/Cargo.toml b/frontend-utils/Cargo.toml index b0d3de5a3..792532b02 100644 --- a/frontend-utils/Cargo.toml +++ b/frontend-utils/Cargo.toml @@ -15,7 +15,7 @@ toml_edit = { version = "0.22.12", features = ["parse"] } url = { workspace = true } tracing = { workspace = true } thiserror = { workspace = true } -zip = { version = "1.1.3", default-features = false, features = ["deflate"]} +zip = { version = "1.1.4", default-features = false, features = ["deflate"]} urlencoding = "2.1.3" ruffle_core = { path = "../core", default-features = false } async-channel = { workspace = true }