gloo
gloo copied to clipboard
A modular toolkit for building fast, reliable Web applications and libraries with Rust and WASM
Bumps [braces](https://github.com/micromatch/braces) from 3.0.2 to 3.0.3. Commits 74b2db2 3.0.3 88f1429 update eslint. lint, fix unit tests. 415d660 Snyk js braces 6838727 (#40) 190510f fix tests, skip 1 test in test/braces.expand...
Bumps the website-deps group with 6 updates in the /website directory: | Package | From | To | | --- | --- | --- | | [@docusaurus/core](https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus) | `3.0.0-beta.0` |...
### Describe the Bug The library I'm calling (sqlite3.js) returns an object with "type": "Error" instead of an instance of Error or a String. Calling try_from panics because the fallback...
The example shown at https://docs.rs/gloo-timers/0.3.0/gloo_timers/#timeouts-with-a-callback-function indicates it's okay to forget a timeout if you don't intend to cancel it. I see that Timeout uses Closure::once. Docs on Closure::once indicate that...
### Description Failure to encode utf-8 strings into headers ### Steps to Reproduce ```rust let password = "brocolis🥦"; let req = Request::get("https://exemple.com") .header("Content-Type", "application/json") .header("pswd", password); ``` Throws the following...
### Describe the Bug When calling `.send().await` on a `ReactorScope` in an infinite loop, nothing is actually sent. ### Steps to Reproduce Spawn a web worker running the following loop....
JsString::from paniced with non-string input. Now this it uses dyn_into so that if the passed JsValue input, when not an Error, can't be turned a string, a fallback message is...