chore: Use workspace version for walkdir

This commit is contained in:
Nathan Adams 2024-04-04 17:14:06 +02:00
parent bb5ec64670
commit b7c9c870bb
5 changed files with 5 additions and 4 deletions

View File

@ -70,6 +70,7 @@ serde = "1.0.197"
thiserror = "1.0"
url = "2.5.0"
wasm-bindgen = "=0.2.92"
walkdir = "2.5.0"
[workspace.lints.rust]
# Clippy nightly often adds new/buggy lints that we want to ignore.

View File

@ -17,4 +17,4 @@ quote = "1.0.35"
swf = { path = "../../swf" }
clap = { workspace = true }
regex = "1.10.4"
walkdir = "2.5.0"
walkdir = { workspace = true }

View File

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

View File

@ -14,7 +14,7 @@ workspace = true
clap = { workspace = true }
ruffle_core = { path = "../core", features = ["deterministic"] }
log = { workspace = true }
walkdir = "2.5.0"
walkdir = { workspace = true }
serde = { workspace = true, features = ["derive"] }
csv = "1.3"
indicatif = "0.17"

View File

@ -25,7 +25,7 @@ ruffle_render_wgpu = { path = "../render/wgpu", optional = true }
ruffle_core = { path = "../core", features = ["deterministic", "timeline_debug", "avm_debug", "audio", "mp3", "default_font"] }
ruffle_test_framework = { path = "framework" }
libtest-mimic = "0.7.0"
walkdir = "2.5.0"
walkdir = { workspace = true }
anyhow = { workspace = true }
image = { workspace = true, features = ["png"] }
futures = { workspace = true }