From a31ea4c59f2ae09f7398797aa3a0c7713b29f4e6 Mon Sep 17 00:00:00 2001 From: David Herberth Date: Sat, 25 May 2024 16:36:53 +0200 Subject: [PATCH] poe: bumps wasm-bindgen to prevent allocation error --- Cargo.lock | 30 +++++++++++++++--------------- Cargo.toml | 2 +- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index aecca24..c03d591 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1420,9 +1420,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" [[package]] name = "wasm-bindgen" -version = "0.2.84" +version = "0.2.92" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b" +checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" dependencies = [ "cfg-if", "serde", @@ -1432,16 +1432,16 @@ dependencies = [ [[package]] name = "wasm-bindgen-backend" -version = "0.2.84" +version = "0.2.92" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9" +checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da" dependencies = [ "bumpalo", "log", "once_cell", "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.49", "wasm-bindgen-shared", ] @@ -1459,9 +1459,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro" -version = "0.2.84" +version = "0.2.92" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5" +checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726" dependencies = [ "quote", "wasm-bindgen-macro-support", @@ -1469,22 +1469,22 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.84" +version = "0.2.92" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6" +checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" dependencies = [ "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.49", "wasm-bindgen-backend", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-shared" -version = "0.2.84" +version = "0.2.92" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d" +checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" [[package]] name = "wasm-streams" @@ -1600,7 +1600,7 @@ checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04" [[package]] name = "worker" version = "0.0.15" -source = "git+https://github.com/Dav1dde/workers-rs.git?rev=7cd3674#7cd36746d3dfb826abb5dfa9b19cb89025114dd7" +source = "git+https://github.com/Dav1dde/workers-rs.git?rev=cef50d2#cef50d23bcc6869b936490cc8e1d3e69cf6feb75" dependencies = [ "async-trait", "chrono", @@ -1673,7 +1673,7 @@ dependencies = [ [[package]] name = "worker-macros" version = "0.0.8" -source = "git+https://github.com/Dav1dde/workers-rs.git?rev=7cd3674#7cd36746d3dfb826abb5dfa9b19cb89025114dd7" +source = "git+https://github.com/Dav1dde/workers-rs.git?rev=cef50d2#cef50d23bcc6869b936490cc8e1d3e69cf6feb75" dependencies = [ "async-trait", "proc-macro2", @@ -1707,7 +1707,7 @@ dependencies = [ [[package]] name = "worker-sys" version = "0.0.8" -source = "git+https://github.com/Dav1dde/workers-rs.git?rev=7cd3674#7cd36746d3dfb826abb5dfa9b19cb89025114dd7" +source = "git+https://github.com/Dav1dde/workers-rs.git?rev=cef50d2#cef50d23bcc6869b936490cc8e1d3e69cf6feb75" dependencies = [ "cfg-if", "js-sys", diff --git a/Cargo.toml b/Cargo.toml index b0ed274..4822911 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -35,7 +35,7 @@ opt-level = 'z' sycamore = { git = "https://github.com/Dav1dde/sycamore.git", rev = "3f6320b", package = "sycamore", features = ["suspense", "hydrate"] } sycamore-router = { git = "https://github.com/Dav1dde/sycamore.git", rev = "3f6320b", package = "sycamore-router" } -worker = { git = "https://github.com/Dav1dde/workers-rs.git", rev = "7cd3674", package = "worker" } +worker = { git = "https://github.com/Dav1dde/workers-rs.git", rev = "cef50d2", package = "worker" } poe-api = { git = "https://github.com/Dav1dde/poe-rs/", rev = "619a8b3", default-features = false } js-sys = "0.3"