Results 49 comments of Soso

Given that reqwest is building support for WebAssembly for use in web context, supporting websockets in wasm could be a great ergonomics improvement over using `web-sys` manually.

`cargo install` might not (I'm not sure and haven't checked) but `cargo build --release --locked` does, and it's the recommended way to build releases, that way, there only needs a...

Hi, do you intend to put the lockfile back in version control? If not, maybe closing the issue would be better. [Here](https://r2c.dev/blog/2022/the-best-free-open-source-supply-chain-tool-the-lockfile/) are a couple more arguments regarding why the...

Amazing. Since Fritter doesn't have a setting to change its locale and that I didn't want to change the locale of my entire phone, this allowed me to change fritter...

Similarly to @rafaelGuerreiro I use a temporary solution using multiple migration folders, one for the schema migration and one for the seeds. To make it usable when developing against a...

I see on Zulip you proposed `iter_on_empty_collection` for the name of `iter_empty`. I like it. I suggest `iter_on_singleton` for `iter_once`

Is it squashed enough now or do you want even more?

In the vast majority of cases the compiler is already able to optimize this. But optimization is not the main goal. The main goal is to make the code more...

I see multiple issues with the current PR, mostly coming from the LMDB API. **TLDR**: LMDB should probably expose an [AEAD](https://en.wikipedia.org/wiki/Authenticated_encryption#Programming_interface) API instead of the current "handmade" API. ### Unsoundness...

Oh, sorry, I was mislead by the documentation: > ``` > The result must be the same number of bytes as the input. > @param[in] src The input data to...