chore: Use workspace version for wasm-bindgen

This commit is contained in:
Nathan Adams 2024-04-04 14:03:22 +02:00
parent 19c914c5a8
commit bb5ec64670
6 changed files with 6 additions and 5 deletions

View File

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

View File

@ -22,7 +22,7 @@ downcast-rs = "1.2.0"
lyon = { version = "1.0.1", optional = true }
lyon_geom = "1.0.5"
thiserror = { workspace = true }
wasm-bindgen = { version = "=0.2.92", optional = true }
wasm-bindgen = { workspace = true, optional = true }
enum-map = { workspace = true }
serde = { workspace = true, features = ["derive"] }
clap = { workspace = true, optional = true }

View File

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

View File

@ -15,7 +15,7 @@ js-sys = { workspace = true }
log = { workspace = true }
ruffle_web_common = { path = "../../web/common" }
ruffle_render = { path = "..", features = ["tessellator", "web"] }
wasm-bindgen = "=0.2.92"
wasm-bindgen = { workspace = true }
bytemuck = { workspace = true, features = ["derive"] }
swf = { path = "../../swf" }
thiserror = { workspace = true }

View File

@ -45,7 +45,7 @@ ruffle_render_webgl = { path = "../render/webgl", optional = true }
ruffle_render_wgpu = { path = "../render/wgpu", optional = true }
ruffle_video_software = { path = "../video/software" }
url = { workspace = true }
wasm-bindgen = "=0.2.92"
wasm-bindgen = { workspace = true }
wasm-bindgen-futures = "0.4.42"
serde-wasm-bindgen = "0.6.5"
chrono = { workspace = true, features = ["wasmbind", "clock"] }

View File

@ -11,7 +11,7 @@ workspace = true
[dependencies]
js-sys = { workspace = true }
tracing = { workspace = true }
wasm-bindgen = "=0.2.92"
wasm-bindgen = { workspace = true }
[dependencies.web-sys]
version = "0.3.69"