chore: Use workspace version for image

This commit is contained in:
Nathan Adams 2024-04-04 13:54:37 +02:00
parent 2036d85a95
commit d8fec1cabc
7 changed files with 7 additions and 6 deletions

View File

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

View File

@ -60,7 +60,7 @@ png = { version = "0.17.13", optional = true }
flv-rs = { path = "../flv" }
async-channel = { workspace = true }
jpegxr = { git = "https://github.com/ruffle-rs/jpegxr", branch = "ruffle", optional = true }
image = { version = "0.25.0", default-features = false, features = ["tiff"] }
image = { workspace = true, features = ["tiff"] }
enum-map = { workspace = true }
ttf-parser = "0.20"
num-bigint = "0.4"

View File

@ -16,7 +16,7 @@ cpal = "0.15.3"
egui = { workspace = true }
egui_extras = { version = "0.27.2", features = ["image"] }
egui-wgpu = { version = "0.27.2", features = ["winit"] }
image = { version = "0.25.0", default-features = false, features = ["png"] }
image = { workspace = true, features = ["png"] }
egui-winit = "0.27.2"
fontdb = "0.16"
ruffle_core = { path = "../core", features = ["audio", "clap", "mp3", "nellymoser", "default_compatibility_rules", "egui"] }

View File

@ -15,7 +15,7 @@ clap = { workspace = true }
futures = { workspace = true }
ruffle_core = { path = "../core", features = ["deterministic", "default_font"] }
ruffle_render_wgpu = { path = "../render/wgpu", features = ["clap"] }
image = { version = "0.25.0", default-features = false, features = ["png"] }
image = { workspace = true, features = ["png"] }
walkdir = "2.5.0"
indicatif = "0.17"
rayon = "1.10.0"

View File

@ -19,7 +19,7 @@ clap = { workspace = true, optional = true }
enum-map = { workspace = true }
fnv = "1.0.7"
swf = { path = "../../swf" }
image = { version = "0.25.0", default-features = false }
image = { workspace = true }
naga_oil = { workspace = true }
naga-agal = { path = "../naga-agal" }
naga-pixelbender = { path = "../naga-pixelbender" }

View File

@ -27,7 +27,7 @@ ruffle_test_framework = { path = "framework" }
libtest-mimic = "0.7.0"
walkdir = "2.5.0"
anyhow = { workspace = true }
image = { version = "0.25.0", default-features = false, features = ["png"] }
image = { workspace = true, features = ["png"] }
futures = { workspace = true }
env_logger = "0.11.3"
tracing = { workspace = true }

View File

@ -16,7 +16,7 @@ ruffle_render = { path = "../../render" }
ruffle_input_format = { path = "../input-format" }
ruffle_socket_format = { path = "../socket-format" }
ruffle_video_software = { path = "../../video/software", optional = true }
image = { version = "0.25.0", default-features = false, features = ["png"] }
image = { workspace = true, features = ["png"] }
regex = "1.10.4"
url = "2.5.0"
chrono = { workspace = true }