diff --git a/examples/action-form-error-handling/Cargo.toml b/examples/action-form-error-handling/Cargo.toml index 80500d482..6920fe778 100644 --- a/examples/action-form-error-handling/Cargo.toml +++ b/examples/action-form-error-handling/Cargo.toml @@ -16,7 +16,7 @@ leptos = { path = "../../leptos" } leptos_meta = { path = "../../meta" } leptos_actix = { path = "../../integrations/actix", optional = true } leptos_router = { path = "../../router" } -wasm-bindgen = "0.2" +wasm-bindgen = "=0.2.92" serde = { version = "1", features = ["derive"] } [features] diff --git a/examples/counter/Cargo.toml b/examples/counter/Cargo.toml index 9ae44fe19..e79df60e1 100644 --- a/examples/counter/Cargo.toml +++ b/examples/counter/Cargo.toml @@ -14,6 +14,6 @@ log = "0.4" console_error_panic_hook = "0.1.7" [dev-dependencies] -wasm-bindgen = "0.2" +wasm-bindgen = "=0.2.92" wasm-bindgen-test = "0.3.0" web-sys = "0.3" diff --git a/examples/counter_isomorphic/Cargo.toml b/examples/counter_isomorphic/Cargo.toml index 8a13a9246..8edab7345 100644 --- a/examples/counter_isomorphic/Cargo.toml +++ b/examples/counter_isomorphic/Cargo.toml @@ -25,7 +25,7 @@ leptos_router = { path = "../../router" } log = "0.4" once_cell = "1.18" gloo-net = { git = "https://github.com/rustwasm/gloo" } -wasm-bindgen = "0.2.87" +wasm-bindgen = "=0.2.92" serde = { version = "1", features = ["derive"] } simple_logger = "4.3" tracing = { version = "0.1", optional = true } diff --git a/examples/counter_url_query/Cargo.toml b/examples/counter_url_query/Cargo.toml index 743c848aa..5b5cdd115 100644 --- a/examples/counter_url_query/Cargo.toml +++ b/examples/counter_url_query/Cargo.toml @@ -15,6 +15,6 @@ log = "0.4" console_error_panic_hook = "0.1.7" [dev-dependencies] -wasm-bindgen = "0.2" +wasm-bindgen = "=0.2.92" wasm-bindgen-test = "0.3.0" web-sys = "0.3" diff --git a/examples/counters/Cargo.toml b/examples/counters/Cargo.toml index a788c6ddb..0366ad736 100644 --- a/examples/counters/Cargo.toml +++ b/examples/counters/Cargo.toml @@ -4,12 +4,12 @@ version = "0.1.0" edition = "2021" [dependencies] -leptos = { path = "../../leptos", features = ["csr", "nightly"] } +leptos = { path = "../../leptos", features = ["csr", "nightly"] } log = "0.4" console_log = "1" console_error_panic_hook = "0.1.7" [dev-dependencies] wasm-bindgen-test = "0.3.0" -wasm-bindgen = "0.2" +wasm-bindgen = "=0.2.92" web-sys = "0.3" diff --git a/examples/counters_stable/Cargo.toml b/examples/counters_stable/Cargo.toml index 143990ea8..74a5f1a9f 100644 --- a/examples/counters_stable/Cargo.toml +++ b/examples/counters_stable/Cargo.toml @@ -12,7 +12,7 @@ console_log = "1" console_error_panic_hook = "0.1.7" [dev-dependencies] -wasm-bindgen = "0.2.87" +wasm-bindgen = "=0.2.92" wasm-bindgen-test = "0.3.37" pretty_assertions = "1.4.0" diff --git a/examples/directives/Cargo.toml b/examples/directives/Cargo.toml index 8be0418ef..c6a21f9a2 100644 --- a/examples/directives/Cargo.toml +++ b/examples/directives/Cargo.toml @@ -12,6 +12,6 @@ web-sys = { version = "0.3", features = ["Clipboard", "Navigator"] } [dev-dependencies] wasm-bindgen-test = "0.3.0" -wasm-bindgen = "0.2" +wasm-bindgen = "=0.2.92" web-sys = "0.3" gloo-timers = { version = "0.3", features = ["futures"] } diff --git a/examples/errors_axum/Cargo.toml b/examples/errors_axum/Cargo.toml index 8a7693ba6..c4c147a81 100644 --- a/examples/errors_axum/Cargo.toml +++ b/examples/errors_axum/Cargo.toml @@ -22,7 +22,7 @@ tower-http = { version = "0.5", features = ["fs"], optional = true } tokio = { version = "1", features = ["full"], optional = true } http = { version = "1.0" } thiserror = "1.0" -wasm-bindgen = "0.2" +wasm-bindgen = "=0.2.92" [features] hydrate = ["leptos/hydrate", "leptos_meta/hydrate", "leptos_router/hydrate"] diff --git a/examples/hackernews/Cargo.toml b/examples/hackernews/Cargo.toml index e1e9a055c..a6d91e34b 100644 --- a/examples/hackernews/Cargo.toml +++ b/examples/hackernews/Cargo.toml @@ -25,7 +25,7 @@ gloo-net = { version = "0.2", features = ["http"] } reqwest = { version = "0.11", features = ["json"] } tracing = "0.1" # openssl = { version = "0.10", features = ["v110"] } -wasm-bindgen = "0.2" +wasm-bindgen = "=0.2.92" web-sys = { version = "0.3", features = ["AbortController", "AbortSignal"] } [features] diff --git a/examples/hackernews_axum/Cargo.toml b/examples/hackernews_axum/Cargo.toml index 440d43fe1..950bcc4a3 100644 --- a/examples/hackernews_axum/Cargo.toml +++ b/examples/hackernews_axum/Cargo.toml @@ -29,7 +29,7 @@ tower-http = { version = "0.5", features = ["fs"], optional = true } tokio = { version = "1", features = ["full"], optional = true } http = { version = "1.0", optional = true } web-sys = { version = "0.3", features = ["AbortController", "AbortSignal"] } -wasm-bindgen = "0.2" +wasm-bindgen = "=0.2.92" [features] default = ["csr"] diff --git a/examples/hackernews_islands_axum/Cargo.toml b/examples/hackernews_islands_axum/Cargo.toml index fc83daf5b..36781d69c 100644 --- a/examples/hackernews_islands_axum/Cargo.toml +++ b/examples/hackernews_islands_axum/Cargo.toml @@ -37,7 +37,7 @@ tower-http = { version = "0.5", features = [ tokio = { version = "1", features = ["full"], optional = true } http = { version = "1.0", optional = true } web-sys = { version = "0.3", features = ["AbortController", "AbortSignal"] } -wasm-bindgen = "0.2" +wasm-bindgen = "=0.2.92" lazy_static = "1.4.0" [features] diff --git a/examples/hackernews_js_fetch/Cargo.toml b/examples/hackernews_js_fetch/Cargo.toml index 00a934bdf..35eb39f74 100644 --- a/examples/hackernews_js_fetch/Cargo.toml +++ b/examples/hackernews_js_fetch/Cargo.toml @@ -33,7 +33,7 @@ web-sys = { version = "0.3", features = [ "Request", "Response", ] } -wasm-bindgen = "0.2" +wasm-bindgen = "=0.2.92" wasm-bindgen-futures = { version = "0.4.37", features = [ "futures-core-03-stream", ], optional = true } diff --git a/examples/js-framework-benchmark/Cargo.toml b/examples/js-framework-benchmark/Cargo.toml index ba0e2ce05..1ce943ecd 100644 --- a/examples/js-framework-benchmark/Cargo.toml +++ b/examples/js-framework-benchmark/Cargo.toml @@ -8,7 +8,11 @@ codegen-units = 1 lto = true [dependencies] -leptos = { path = "../../leptos", features = ["csr", "nightly", "template_macro"] } +leptos = { path = "../../leptos", features = [ + "csr", + "nightly", + "template_macro", +] } console_log = "1" log = "0.4" # used in rand, but we need to enable js feature @@ -17,6 +21,6 @@ rand = { version = "0.8.5", features = ["small_rng"] } console_error_panic_hook = "0.1.7" [dev-dependencies] -wasm-bindgen = "0.2" +wasm-bindgen = "=0.2.92" wasm-bindgen-test = "0.3.0" web-sys = "0.3" diff --git a/examples/portal/Cargo.toml b/examples/portal/Cargo.toml index 69ae4f9e2..65a8111f6 100644 --- a/examples/portal/Cargo.toml +++ b/examples/portal/Cargo.toml @@ -11,6 +11,6 @@ console_error_panic_hook = "0.1.7" [dev-dependencies] wasm-bindgen-test = "0.3.0" -wasm-bindgen = "0.2" +wasm-bindgen = "=0.2.92" web-sys = "0.3" gloo-timers = { version = "0.3", features = ["futures"] } diff --git a/examples/server_fns_axum/Cargo.toml b/examples/server_fns_axum/Cargo.toml index 338370d63..027a1f3ba 100644 --- a/examples/server_fns_axum/Cargo.toml +++ b/examples/server_fns_axum/Cargo.toml @@ -15,16 +15,24 @@ leptos = { path = "../../leptos", features = ["nightly"] } leptos_axum = { path = "../../integrations/axum", optional = true } leptos_meta = { path = "../../meta", features = ["nightly"] } leptos_router = { path = "../../router", features = ["nightly"] } -server_fn = { path = "../../server_fn", features = ["serde-lite", "rkyv", "multipart"] } +server_fn = { path = "../../server_fn", features = [ + "serde-lite", + "rkyv", + "multipart", +] } log = "0.4" simple_logger = "4.0" serde = { version = "1", features = ["derive"] } axum = { version = "0.7", optional = true } tower = { version = "0.4", optional = true } -tower-http = { version = "0.5", features = ["fs", "tracing", "trace"], optional = true } +tower-http = { version = "0.5", features = [ + "fs", + "tracing", + "trace", +], optional = true } tokio = { version = "1", features = ["full"], optional = true } thiserror = "1.0" -wasm-bindgen = "0.2" +wasm-bindgen = "=0.2.92" serde_toml = "0.0.1" toml = "0.8.8" web-sys = { version = "0.3.67", features = ["FileList", "File"] } diff --git a/examples/session_auth_axum/Cargo.toml b/examples/session_auth_axum/Cargo.toml index 8e13a0a7a..517046f31 100644 --- a/examples/session_auth_axum/Cargo.toml +++ b/examples/session_auth_axum/Cargo.toml @@ -29,7 +29,7 @@ sqlx = { version = "0.7.2", features = [ "sqlite", ], optional = true } thiserror = "1.0" -wasm-bindgen = "0.2" +wasm-bindgen = "=0.2.92" axum_session_auth = { version = "0.12.1", features = [ "sqlite-rustls", ], optional = true } diff --git a/examples/sso_auth_axum/Cargo.toml b/examples/sso_auth_axum/Cargo.toml index 2f85a273b..f412424b8 100644 --- a/examples/sso_auth_axum/Cargo.toml +++ b/examples/sso_auth_axum/Cargo.toml @@ -31,7 +31,7 @@ sqlx = { version = "0.7", features = [ "sqlite", ], optional = true } thiserror = "1.0.38" -wasm-bindgen = "0.2" +wasm-bindgen = "=0.2.92" axum_session_auth = { version = "0.12", features = [ "sqlite-rustls", ], optional = true } diff --git a/examples/ssr_modes/Cargo.toml b/examples/ssr_modes/Cargo.toml index da2d7cecf..a50615ec7 100644 --- a/examples/ssr_modes/Cargo.toml +++ b/examples/ssr_modes/Cargo.toml @@ -20,7 +20,7 @@ log = "0.4" serde = { version = "1", features = ["derive"] } thiserror = "1" tokio = { version = "1", features = ["time"] } -wasm-bindgen = "0.2" +wasm-bindgen = "=0.2.92" [features] hydrate = ["leptos/hydrate", "leptos_meta/hydrate", "leptos_router/hydrate"] diff --git a/examples/ssr_modes_axum/Cargo.toml b/examples/ssr_modes_axum/Cargo.toml index e69cc16ea..bf37d9e86 100644 --- a/examples/ssr_modes_axum/Cargo.toml +++ b/examples/ssr_modes_axum/Cargo.toml @@ -20,8 +20,12 @@ thiserror = "1" axum = { version = "0.7", optional = true } tower = { version = "0.4", optional = true } tower-http = { version = "0.5", features = ["fs"], optional = true } -tokio = { version = "1", features = ["rt-multi-thread", "macros", "time"], optional = true } -wasm-bindgen = "0.2" +tokio = { version = "1", features = [ + "rt-multi-thread", + "macros", + "time", +], optional = true } +wasm-bindgen = "=0.2.92" [features] hydrate = ["leptos/hydrate", "leptos_meta/hydrate", "leptos_router/hydrate"] diff --git a/examples/suspense_tests/Cargo.toml b/examples/suspense_tests/Cargo.toml index 65a8031c0..ca569902e 100644 --- a/examples/suspense_tests/Cargo.toml +++ b/examples/suspense_tests/Cargo.toml @@ -16,7 +16,7 @@ leptos_actix = { path = "../../integrations/actix", optional = true } leptos_router = { path = "../../router" } log = "0.4" simple_logger = "4" -wasm-bindgen = "0.2.87" +wasm-bindgen = "=0.2.92" serde = "1.0.159" tokio = { version = "1.29", features = ["time", "rt"], optional = true } diff --git a/examples/tailwind_actix/Cargo.toml b/examples/tailwind_actix/Cargo.toml index 57cd5d7e8..e5c71e4a2 100644 --- a/examples/tailwind_actix/Cargo.toml +++ b/examples/tailwind_actix/Cargo.toml @@ -17,7 +17,7 @@ gloo-net = { version = "0.2", features = ["http"] } log = "0.4" # dependencies for client (enable when csr or hydrate set) -wasm-bindgen = { version = "0.2", optional = true } +wasm-bindgen = { version = "=0.2.92", optional = true } console_log = { version = "1", optional = true } console_error_panic_hook = { version = "0.1", optional = true } diff --git a/examples/tailwind_axum/Cargo.toml b/examples/tailwind_axum/Cargo.toml index cae42b0c5..4f6215792 100644 --- a/examples/tailwind_axum/Cargo.toml +++ b/examples/tailwind_axum/Cargo.toml @@ -16,10 +16,13 @@ leptos_axum = { path = "../../integrations/axum", optional = true } leptos_router = { path = "../../router", features = ["nightly"] } log = "0.4.17" simple_logger = "4" -tokio = { version = "1", features = ["rt-multi-thread", "macros"], optional = true } +tokio = { version = "1", features = [ + "rt-multi-thread", + "macros", +], optional = true } tower = { version = "0.4", optional = true } tower-http = { version = "0.5", features = ["fs"], optional = true } -wasm-bindgen = "0.2" +wasm-bindgen = "=0.2.92" thiserror = "1.0" tracing = { version = "0.1", optional = true } http = "1.0" diff --git a/examples/tailwind_csr/Cargo.toml b/examples/tailwind_csr/Cargo.toml index 4a22d2aed..d7f0aa347 100644 --- a/examples/tailwind_csr/Cargo.toml +++ b/examples/tailwind_csr/Cargo.toml @@ -11,6 +11,6 @@ log = "0.4" gloo-net = { version = "0.2", features = ["http"] } # dependencies for client (enable when csr or hydrate set) -wasm-bindgen = { version = "0.2" } +wasm-bindgen = { version = "=0.2.92" } console_log = { version = "1" } console_error_panic_hook = { version = "0.1" } diff --git a/examples/timer/Cargo.toml b/examples/timer/Cargo.toml index 63686821d..8e6aec575 100644 --- a/examples/timer/Cargo.toml +++ b/examples/timer/Cargo.toml @@ -12,13 +12,11 @@ leptos = { path = "../../leptos", features = ["csr", "nightly"] } console_log = "1" log = "0.4" console_error_panic_hook = "0.1.7" -wasm-bindgen = "0.2" +wasm-bindgen = "=0.2.92" [dependencies.web-sys] version = "0.3" -features = [ - "Window", -] +features = ["Window"] [dev-dependencies] wasm-bindgen-test = "0.3.0" diff --git a/examples/todo_app_sqlite/Cargo.toml b/examples/todo_app_sqlite/Cargo.toml index 5e0727fb6..f812f7326 100644 --- a/examples/todo_app_sqlite/Cargo.toml +++ b/examples/todo_app_sqlite/Cargo.toml @@ -26,7 +26,7 @@ sqlx = { version = "0.6.2", features = [ "runtime-tokio-rustls", "sqlite", ], optional = true } -wasm-bindgen = "0.2" +wasm-bindgen = "=0.2.92" tokio = { version = "1", features = ["rt", "time"], optional = true } [features] diff --git a/examples/todo_app_sqlite_axum/Cargo.toml b/examples/todo_app_sqlite_axum/Cargo.toml index 2e9194a17..2833344af 100644 --- a/examples/todo_app_sqlite_axum/Cargo.toml +++ b/examples/todo_app_sqlite_axum/Cargo.toml @@ -28,7 +28,7 @@ sqlx = { version = "0.7", features = [ "sqlite", ], optional = true } thiserror = "1.0" -wasm-bindgen = "0.2" +wasm-bindgen = "=0.2.92" [features] hydrate = ["leptos/hydrate", "leptos_meta/hydrate", "leptos_router/hydrate"] diff --git a/examples/todo_app_sqlite_csr/Cargo.toml b/examples/todo_app_sqlite_csr/Cargo.toml index f8b2dc3fe..e9a90dd3b 100644 --- a/examples/todo_app_sqlite_csr/Cargo.toml +++ b/examples/todo_app_sqlite_csr/Cargo.toml @@ -28,7 +28,7 @@ sqlx = { version = "0.7", features = [ "sqlite", ], optional = true } thiserror = "1.0" -wasm-bindgen = "0.2" +wasm-bindgen = "=0.2.92" [features] csr = ["leptos/csr", "leptos_meta/csr", "leptos_router/csr"]