Duncan
Duncan
As discussed here: https://github.com/helix-editor/helix/pull/2128#discussion_r889238215 To support `refill`ing single-line Rust comments (as desired in [this helix issue][helix_issue]), the most flexible proposal I've seen is to provide a list of know prefixes,...
These features determine how `usize` is serialized, and they are mutually exclusive. If a downstream crate tries to enable `size_64`, they will get a compile error because, by default, parry...
Fixes #29
From my reading of the code, `Compat` futures will unconditionally create and enter a new single-threaded tokio runtime. This seems potentially inefficient if a tokio runtime (maybe a multi-threaded one)...
The pattern of keeping `PkvStore` as a resource is not compatible with offloading usage onto a task pool, because `PkvStore` cannot be cloned. Is the intended usage to create a...
Need some criterion benchmarks of iteration and lookup speed. Take a look at the structure of these benches for a template: https://github.com/bonsairobo/fast-surface-nets-rs/blob/main/bench/src/bench.rs
## Problem By only providing a global cache, the "address spaces" of any two different (serializable) data structures relying on `Ustr` will be wed. The only way to actually use...
I'm trying to write Neural Style in MXNet.jl, and I keep running out of memory when I try to make new executors (and delete the old ones). My basic strategy...
As far as I can tell, there is no support for extracting row properties from the row XML, e.g.: ```xml ... ``` I'm specifically interested in the `outlineLevel` attribute. It's...
Right now, `Value::Blob` requires a `Vec`. I would like to be able to use it with `[u8; N]` for things like UUIDs. When combined with something like `rarray`, the number...