Zicklag

Results 652 comments of Zicklag

Also might look into [mimalloc](https://github.com/microsoft/mimalloc) if it still helps performance after investigating the possibility of reducing allocations. There are [a couple](https://github.com/search?l=Rust&q=mimalloc&type=Repositories) of Rust global allocators for Mimalloc we could try.

I would suggest looking/asking around about the best ways to support SIMD in Rust, too, because I think there are crates that allow for determining whether or not to use...

According to the README for the [pgp](https://lib.rs/crates/pgp) crate, `rsa` actually *has* gotten a review. If this is true then we could take that note out of the README about the...

I think that it makes sense to have to `.await` `join!`. It seems to make it easier to understand, and it isn't at all a lot of extra syntax to...

:+1: for me. I think that makes a lot of sense.

I do not have a Mac myself to test it on, but I have a user of my application who has reported a similar [failure](https://discourse.charmhub.io/t/juju-lens-v0-1-0-new-desktop-application-with-ssh-support/3613/23?u=zicklag) for the App.tgz: "You can't...

I still haven't succeeded in it yet, but I think it may not be impossible to get working using mingw and a pre-built `webview.dll` which is going to be built...

Well, maybe it won't work. I don't know why, but when I compile a simple C program just like is mentioned [here](https://github.com/webview/webview/issues/311#issuecomment-587000018) and I link against the pre-built DLL, the...

I'll try a `TriMesh` then, thanks! I'll leave this issue open for anybody else who might stumble on this.

I think that the performance that would be gained by Rapier when switching to async would be related to replacing Rayon, which uses thread pools for work and therefore could...