exporter: Only use png feature of image crate

This commit is contained in:
nosamu 2023-02-10 04:06:07 -06:00 committed by Adrian Wielgosik
parent c1fe3ded25
commit 669bd83387
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ clap = { version = "4.1.4", features = ["derive"] }
futures = "0.3" futures = "0.3"
ruffle_core = { path = "../core", features = ["deterministic"] } ruffle_core = { path = "../core", features = ["deterministic"] }
ruffle_render_wgpu = { path = "../render/wgpu", features = ["clap"] } ruffle_render_wgpu = { path = "../render/wgpu", features = ["clap"] }
image = "0.24.5" image = { version = "0.24.5", default-features = false, features = ["png"] }
log = "0.4" log = "0.4"
walkdir = "2.3.2" walkdir = "2.3.2"
indicatif = "0.17" indicatif = "0.17"