chore: Use workspace version for anyhow

This commit is contained in:
Nathan Adams 2024-04-04 11:38:41 +02:00
parent f18d890bea
commit 8e4127aef6
5 changed files with 5 additions and 5 deletions

View File

@ -34,7 +34,7 @@ url = "2.5.0"
dirs = "5.0" dirs = "5.0"
isahc = { version = "1.7.2", features = ["cookies"] } isahc = { version = "1.7.2", features = ["cookies"] }
rfd = "0.14.1" rfd = "0.14.1"
anyhow = "1.0" anyhow = { workspace = true }
bytemuck = "1.15.0" bytemuck = "1.15.0"
os_info = { version = "3", default-features = false } os_info = { version = "3", default-features = false }
unic-langid = "0.9.4" unic-langid = "0.9.4"

View File

@ -14,5 +14,5 @@ workspace = true
ruffle_render = { path = "../" } ruffle_render = { path = "../" }
naga = { workspace = true } naga = { workspace = true }
naga_oil = { workspace = true } naga_oil = { workspace = true }
anyhow = "1.0.81" anyhow = { workspace = true }

View File

@ -26,7 +26,7 @@ ruffle_core = { path = "../core", features = ["deterministic", "timeline_debug",
ruffle_test_framework = { path = "framework" } ruffle_test_framework = { path = "framework" }
libtest-mimic = "0.7.0" libtest-mimic = "0.7.0"
walkdir = "2.5.0" walkdir = "2.5.0"
anyhow = "1.0.81" anyhow = { workspace = true }
image = { version = "0.25.0", default-features = false, features = ["png"] } image = { version = "0.25.0", default-features = false, features = ["png"] }
futures = "0.3.30" futures = "0.3.30"
env_logger = "0.11.3" env_logger = "0.11.3"

View File

@ -24,7 +24,7 @@ approx = "0.5.1"
pretty_assertions = "1.4.0" pretty_assertions = "1.4.0"
serde = "1.0.197" serde = "1.0.197"
toml = "0.8.12" toml = "0.8.12"
anyhow = "1.0.81" anyhow = { workspace = true }
async-channel = "2.2.0" async-channel = "2.2.0"
vfs = "0.12.0" vfs = "0.12.0"
percent-encoding = "2.3.1" percent-encoding = "2.3.1"

View File

@ -11,7 +11,7 @@ version.workspace = true
workspace = true workspace = true
[dependencies] [dependencies]
anyhow = "1.0.81" anyhow = { workspace = true }
clap = { version = "4.5.4", features = ["derive"] } clap = { version = "4.5.4", features = ["derive"] }
tracing = { workspace = true} tracing = { workspace = true}
tracing-subscriber = { workspace = true } tracing-subscriber = { workspace = true }