chore: Use workspace version for flate2

This commit is contained in:
Nathan Adams 2024-04-04 13:46:34 +02:00
parent c3711e3953
commit 2bd1ef47b7
5 changed files with 5 additions and 4 deletions

View File

@ -59,6 +59,7 @@ bitflags = "2.5.0"
bytemuck = "1.15.0"
chrono = { version = "0.4.35", default-features = false }
enum-map = "2.7.3"
flate2 = "1.0.28"
[workspace.lints.rust]
# Clippy nightly often adds new/buggy lints that we want to ignore.

View File

@ -14,7 +14,7 @@ workspace = true
linkme = { version = "0.3", optional = true }
byteorder = "1.5"
bitstream-io = "2.2.0"
flate2 = "1.0.28"
flate2 = { workspace = true }
fnv = "1.0.7"
gc-arena = { package = "ruffle_gc_arena", path = "../ruffle_gc_arena" }
slotmap = { workspace = true }

View File

@ -16,7 +16,7 @@ swf = { path = "../swf"}
tracing = { workspace = true }
gif = "0.13.1"
png = "0.17.13"
flate2 = "1.0.28"
flate2 = { workspace = true }
smallvec = { version = "1.13.2", features = ["union"] }
downcast-rs = "1.2.0"
lyon = { version = "1.0.1", optional = true }

View File

@ -20,7 +20,7 @@ num-derive = "0.4"
num-traits = "0.2"
libflate = {version = "2.0", optional = true}
log = "0.4"
flate2 = {version = "1.0", optional = true}
flate2 = { workspace = true, optional = true}
lzma-rs = {version = "0.3.0", optional = true }
enum-map = { workspace = true }
simple_asn1 = "0.6.2"

View File

@ -16,7 +16,7 @@ ruffle_video = { path = ".." }
swf = { path = "../../swf" }
slotmap = { workspace = true }
thiserror = "1.0"
flate2 = "1.0.28"
flate2 = { workspace = true }
log = "0.4"
h263-rs = { git = "https://github.com/ruffle-rs/h263-rs", rev = "5c8d9d7d86f62b70ca484df006a75a9c8ff1985c", optional = true }