diff --git a/Cargo.toml b/Cargo.toml index 12452794f..1af50321e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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. diff --git a/core/build_playerglobal/Cargo.toml b/core/build_playerglobal/Cargo.toml index b0587a5f4..18dfaba84 100644 --- a/core/build_playerglobal/Cargo.toml +++ b/core/build_playerglobal/Cargo.toml @@ -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 } diff --git a/exporter/Cargo.toml b/exporter/Cargo.toml index 1f449bb7d..8e96c50af 100644 --- a/exporter/Cargo.toml +++ b/exporter/Cargo.toml @@ -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 } diff --git a/scanner/Cargo.toml b/scanner/Cargo.toml index b1c50c28e..59781ba79 100644 --- a/scanner/Cargo.toml +++ b/scanner/Cargo.toml @@ -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" diff --git a/tests/Cargo.toml b/tests/Cargo.toml index 827980fa9..4f27c6427 100644 --- a/tests/Cargo.toml +++ b/tests/Cargo.toml @@ -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 }