chore: Use workspace version for log

This commit is contained in:
Nathan Adams 2024-04-04 13:56:55 +02:00
parent ab8b1c654c
commit 2b2be8a992
6 changed files with 6 additions and 5 deletions

View File

@ -63,6 +63,7 @@ flate2 = "1.0.28"
futures = "0.3.30"
image = { version = "0.25.0", default-features = false }
js-sys = "0.3.69"
log = "0.4"
[workspace.lints.rust]
# Clippy nightly often adds new/buggy lints that we want to ignore.

View File

@ -12,7 +12,7 @@ workspace = true
[dependencies]
js-sys = { workspace = true }
log = "0.4"
log = { workspace = true }
ruffle_web_common = { path = "../../web/common" }
wasm-bindgen = "=0.2.92"
ruffle_render = { path = "..", features = ["web"] }

View File

@ -12,7 +12,7 @@ workspace = true
[dependencies]
js-sys = { workspace = true }
log = "0.4"
log = { workspace = true }
ruffle_web_common = { path = "../../web/common" }
ruffle_render = { path = "..", features = ["tessellator", "web"] }
wasm-bindgen = "=0.2.92"

View File

@ -13,7 +13,7 @@ workspace = true
[dependencies]
clap = { workspace = true }
ruffle_core = { path = "../core", features = ["deterministic"] }
log = "0.4"
log = { workspace = true }
walkdir = "2.5.0"
serde = { version = "1.0", features = ["derive"] }
csv = "1.3"

View File

@ -19,7 +19,7 @@ encoding_rs = "0.8.33"
num-derive = "0.4"
num-traits = "0.2"
libflate = {version = "2.0", optional = true}
log = "0.4"
log = { workspace = true }
flate2 = { workspace = true, optional = true}
lzma-rs = {version = "0.3.0", optional = true }
enum-map = { workspace = true }

View File

@ -17,7 +17,7 @@ swf = { path = "../../swf" }
slotmap = { workspace = true }
thiserror = "1.0"
flate2 = { workspace = true }
log = "0.4"
log = { workspace = true }
h263-rs = { git = "https://github.com/ruffle-rs/h263-rs", rev = "5c8d9d7d86f62b70ca484df006a75a9c8ff1985c", optional = true }
h263-rs-deblock = { git = "https://github.com/ruffle-rs/h263-rs", rev = "5c8d9d7d86f62b70ca484df006a75a9c8ff1985c", optional = true }