Skip to content

Commit

Permalink
fix(deps): update wasm-bindgen
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored and Dinnerbone committed Mar 2, 2024
1 parent 8b8d028 commit 35d7211
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 17 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ unic-segment = "0.9.0"
version = "0.3.30"

[target.'cfg(target_family = "wasm")'.dependencies.wasm-bindgen-futures]
version = "0.4.40"
version = "0.4.41"

[features]
default = []
Expand Down
4 changes: 2 additions & 2 deletions render/canvas/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ version.workspace = true
workspace = true

[dependencies]
js-sys = "0.3.67"
js-sys = "0.3.68"
log = "0.4"
ruffle_web_common = { path = "../../web/common" }
wasm-bindgen = "=0.2.91"
Expand All @@ -21,7 +21,7 @@ swf = { path = "../../swf" }
downcast-rs = "1.2.0"

[dependencies.web-sys]
version = "0.3.67"
version = "0.3.68"
features = [
"CanvasGradient", "CanvasPattern", "CanvasRenderingContext2d", "CanvasWindingRule", "CssStyleDeclaration",
"Document", "DomMatrix", "Element", "HtmlCanvasElement", "ImageData", "Navigator", "Path2d", "SvgMatrix",
Expand Down
4 changes: 2 additions & 2 deletions render/webgl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ version.workspace = true
workspace = true

[dependencies]
js-sys = "0.3.67"
js-sys = "0.3.68"
log = "0.4"
ruffle_web_common = { path = "../../web/common" }
ruffle_render = { path = "..", features = ["tessellator", "web"] }
Expand All @@ -23,7 +23,7 @@ thiserror = "1.0"
downcast-rs = "1.2.0"

[dependencies.web-sys]
version = "0.3.67"
version = "0.3.68"
features = [
"HtmlCanvasElement", "OesVertexArrayObject", "WebGl2RenderingContext", "WebGlBuffer", "WebglDebugRendererInfo",
"WebGlFramebuffer", "WebGlProgram", "WebGlRenderbuffer", "WebGlRenderingContext", "WebGlShader", "WebGlTexture",
Expand Down
2 changes: 1 addition & 1 deletion render/wgpu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ version = "0.3.30"

# wasm
[target.'cfg(target_family = "wasm")'.dependencies.web-sys]
version = "0.3.67"
version = "0.3.68"
features = ["HtmlCanvasElement"]

[features]
Expand Down
6 changes: 3 additions & 3 deletions web/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ profiling = []
[dependencies]
console_error_panic_hook = { version = "0.1.7", optional = true }
generational-arena = "0.2.9"
js-sys = "0.3.67"
js-sys = "0.3.68"
tracing = { workspace = true, features = ["log"] }
tracing-subscriber = { version = "0.3.18", default-features = false, features = ["registry"] }
tracing-log = "0.2.0"
Expand All @@ -46,7 +46,7 @@ ruffle_render_wgpu = { path = "../render/wgpu", optional = true }
ruffle_video_software = { path = "../video/software" }
url = "2.5.0"
wasm-bindgen = "=0.2.91"
wasm-bindgen-futures = "0.4.40"
wasm-bindgen-futures = "0.4.41"
serde-wasm-bindgen = "0.6.5"
chrono = { version = "0.4", default-features = false, features = ["wasmbind", "clock"] }
getrandom = { version = "0.2", features = ["js"] }
Expand All @@ -65,7 +65,7 @@ path = "../core"
features = ["audio", "mp3", "nellymoser", "default_compatibility_rules", "default_font"]

[dependencies.web-sys]
version = "0.3.67"
version = "0.3.68"
features = [
"AddEventListenerOptions", "AudioBuffer", "AudioBufferSourceNode", "AudioContext",
"AudioDestinationNode", "AudioNode", "AudioParam", "Blob", "BlobPropertyBag",
Expand Down
4 changes: 2 additions & 2 deletions web/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ license = "MIT OR Apache-2.0"
workspace = true

[dependencies]
js-sys = "0.3.67"
js-sys = "0.3.68"
tracing = { workspace = true }
wasm-bindgen = "=0.2.91"

[dependencies.web-sys]
version = "0.3.67"
version = "0.3.68"
features = ["Window"]

0 comments on commit 35d7211

Please sign in to comment.