diff --git a/desktop/Cargo.toml b/desktop/Cargo.toml index 4d2e2403e..cee9627bf 100644 --- a/desktop/Cargo.toml +++ b/desktop/Cargo.toml @@ -34,7 +34,7 @@ url = "2.5.0" dirs = "5.0" isahc = { version = "1.7.2", features = ["cookies"] } rfd = "0.14.1" -anyhow = "1.0" +anyhow = { workspace = true } bytemuck = "1.15.0" os_info = { version = "3", default-features = false } unic-langid = "0.9.4" diff --git a/render/naga-pixelbender/Cargo.toml b/render/naga-pixelbender/Cargo.toml index 951f622b8..4ded717da 100644 --- a/render/naga-pixelbender/Cargo.toml +++ b/render/naga-pixelbender/Cargo.toml @@ -14,5 +14,5 @@ workspace = true ruffle_render = { path = "../" } naga = { workspace = true } naga_oil = { workspace = true } -anyhow = "1.0.81" +anyhow = { workspace = true } diff --git a/tests/Cargo.toml b/tests/Cargo.toml index 082b7e902..c8ab7dbc5 100644 --- a/tests/Cargo.toml +++ b/tests/Cargo.toml @@ -26,7 +26,7 @@ ruffle_core = { path = "../core", features = ["deterministic", "timeline_debug", ruffle_test_framework = { path = "framework" } libtest-mimic = "0.7.0" walkdir = "2.5.0" -anyhow = "1.0.81" +anyhow = { workspace = true } image = { version = "0.25.0", default-features = false, features = ["png"] } futures = "0.3.30" env_logger = "0.11.3" diff --git a/tests/framework/Cargo.toml b/tests/framework/Cargo.toml index 26a611991..f8709d05c 100644 --- a/tests/framework/Cargo.toml +++ b/tests/framework/Cargo.toml @@ -24,7 +24,7 @@ approx = "0.5.1" pretty_assertions = "1.4.0" serde = "1.0.197" toml = "0.8.12" -anyhow = "1.0.81" +anyhow = { workspace = true } async-channel = "2.2.0" vfs = "0.12.0" percent-encoding = "2.3.1" diff --git a/tests/mocket/Cargo.toml b/tests/mocket/Cargo.toml index 78853acee..2e0cb1c03 100644 --- a/tests/mocket/Cargo.toml +++ b/tests/mocket/Cargo.toml @@ -11,7 +11,7 @@ version.workspace = true workspace = true [dependencies] -anyhow = "1.0.81" +anyhow = { workspace = true } clap = { version = "4.5.4", features = ["derive"] } tracing = { workspace = true} tracing-subscriber = { workspace = true }