EFanZh
EFanZh
I am open to the idea. But currently the source code is under heavy refactoring and rewriting to adapt to the latest Webview API. PRs will most certainly result in...
Hi @forivall, I think the code structure is somewhat stabilized now. If you are still interested in contributing, you can submitting a pull request now.
Can you provide the full content of your source file?
I think this is a bug from GraphViz. I tried to generate an SVG using `dot` directly: ```sh echo 'digraph dpi_bug { graph [dpi = 300]; A -> B; }'...
Hi @ulyssessouza, the pull request #1767 seems inactive for quite some time, can you check this PR insead?
Now I start to think it might not be possible. The problem is that `Lazy` has another generic argument `F` which should be a `FnOnce` type. So the sized `Lazy`...
For my use case, I only care about logs printed by my code, so how dependencies print their logs do not matter. Also, this feature is optional, so the user...
I see there is a `SetMatches::iter` method: .
What about `FutureExt::remote_handle`? Like `abortable`, it also returns a tuple. To compare: ```rust pub fn abortable(future: Fut) -> (Abortable, AbortHandle) ``` vs ```rust pub fn remote_handle(self) -> (Remote, RemoteHandle) ```...
How about replacing [`Slab`](https://docs.rs/slab/latest/slab/struct.Slab.html) with [`HopSlotMap`](https://docs.rs/slotmap/latest/slotmap/struct.HopSlotMap.html)? It claims to have [fast iteration speed](https://docs.rs/slotmap/latest/slotmap/index.html#choosing-slotmap-hopslotmap-or-denseslotmap).