Results 25 comments of Dylan R. Johnston

I've forked the repo for the same reason https://github.com/cloudflare/workers-rs/compare/main...DylanRJohnston:workers-rs:main. Now I just need to figure out if it's worth writing the bindings for WebSocket Hibernation or just abandon using Rust...

@spigaz I took a stab at writing the bindings for the Hibernatable Web Sockets and they work https://github.com/cloudflare/workers-rs/pull/434. Wasn't as hard as I thought once I read through the `wasm_bindgen`...

@Boscop I believe that `wasm-bindgen` is extremely unstable, every part of the toolchain must be using the exact same version. So you need to make sure that tools like `wasm-pack`...

Hey guys, I've got a working [PR](https://github.com/cloudflare/workers-rs/pull/434) for most of the APIs required for Hibernatable Web Sockets. It wasn't as hard as I thought it would be after reading through...

Thanks for the workaround @RSSchermer, I needed this to replicate the ability to use JS Objects as Map keys like you can in Javascript. ```rs let map = new Map()...