Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Leptos to use latest wasm-bindgen version #3304

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 17 additions & 16 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 any_spawner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ tokio = { version = "1.41", optional = true, default-features = false, features
"rt",
] }
tracing = { version = "0.1.40", optional = true }
wasm-bindgen-futures = { version = "0.4.45", optional = true }
wasm-bindgen-futures = { version = "0.4.46", optional = true }

[features]
async-executor = ["dep:async-executor"]
Expand Down
4 changes: 2 additions & 2 deletions leptos/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ server_fn = { workspace = true, features = [
"browser",
"url",
] }
web-sys = { version = "0.3.72", features = [
web-sys = { version = "0.3.73", features = [
"ShadowRoot",
"ShadowRootInit",
"ShadowRootMode",
] }
wasm-bindgen = "0.2.95"
wasm-bindgen = "0.2.96"
serde_qs = "0.13.0"
slotmap = "1.0"
futures = "0.3.31"
Expand Down
6 changes: 3 additions & 3 deletions leptos_dom/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ edition.workspace = true
tachys = { workspace = true }
reactive_graph = { workspace = true }
or_poisoned = { workspace = true }
js-sys = "0.3.72"
js-sys = "0.3.73"
send_wrapper = "0.6.0"
tracing = { version = "0.1.40", optional = true }
wasm-bindgen = "0.2.95"
wasm-bindgen = "0.2.96"
serde_json = { version = "1.0", optional = true }
serde = { version = "1.0", optional = true }

[dev-dependencies]
leptos = { path = "../leptos" }

[dependencies.web-sys]
version = "0.3.72"
version = "0.3.73"
features = ["Location"]

[features]
Expand Down
4 changes: 2 additions & 2 deletions meta/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ or_poisoned = { workspace = true }
indexmap = "2.6"
send_wrapper = "0.6.0"
tracing = { version = "0.1.40", optional = true }
wasm-bindgen = "0.2.95"
wasm-bindgen = "0.2.96"
futures = "0.3.31"

[dependencies.web-sys]
version = "0.3.72"
version = "0.3.73"
features = ["HtmlLinkElement", "HtmlMetaElement", "HtmlTitleElement"]

[features]
Expand Down
2 changes: 1 addition & 1 deletion reactive_graph/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ async-lock = "3.4.0"
send_wrapper = { version = "0.6.0", features = ["futures"] }

[target.'cfg(all(target_arch = "wasm32", target_os = "unknown"))'.dependencies]
web-sys = "0.3.72"
web-sys = "0.3.73"

[dev-dependencies]
tokio = { version = "1.41", features = ["rt-multi-thread", "macros"] }
Expand Down
6 changes: 3 additions & 3 deletions router/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ reactive_graph = { workspace = true }
tachys = { workspace = true, features = ["reactive_graph"] }
futures = "0.3.31"
url = "2.5"
js-sys = { version = "0.3.72" }
wasm-bindgen = { version = "0.2.95" }
js-sys = "0.3.73"
wasm-bindgen = "0.2.96"
tracing = { version = "0.1.40", optional = true }
once_cell = "1.20"
send_wrapper = "0.6.0"
Expand All @@ -29,7 +29,7 @@ percent-encoding = { version = "2.3", optional = true }
gloo-net = "0.6.0"

[dependencies.web-sys]
version = "0.3.72"
version = "0.3.73"
features = [
"Document",
"Window",
Expand Down
8 changes: 4 additions & 4 deletions server_fn/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@ rmp-serde = { version = "1.3.0", optional = true }

# client
gloo-net = { version = "0.6.0", optional = true }
js-sys = { version = "0.3.72", optional = true }
wasm-bindgen = { version = "0.2.95", optional = true }
wasm-bindgen-futures = { version = "0.4.45", optional = true }
js-sys = { version = "0.3.73", optional = true }
wasm-bindgen = { version = "0.2.96", optional = true }
wasm-bindgen-futures = { version = "0.4.46", optional = true }
wasm-streams = { version = "0.4.2", optional = true }
web-sys = { version = "0.3.72", optional = true, features = [
web-sys = { version = "0.3.73", optional = true, features = [
"console",
"ReadableStream",
"ReadableStreamDefaultReader",
Expand Down
6 changes: 3 additions & 3 deletions tachys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ slotmap = { version = "1.0", optional = true }
oco_ref = { workspace = true, optional = true }
once_cell = "1.20"
paste = "1.0"
wasm-bindgen = "0.2.95"
wasm-bindgen = "0.2.96"
html-escape = "0.2.13"
js-sys = "0.3.72"
web-sys = { version = "0.3.72", features = [
js-sys = "0.3.73"
web-sys = { version = "0.3.73", features = [
"Window",
"Document",
"HtmlElement",
Expand Down
Loading