Sergey "Shnatsel" Davidoff
Sergey "Shnatsel" Davidoff
This seems like a pretty large undertaking, and would be difficult to design in one go and without prototyping first. But long-running branches suck because of editing conflicts. How about...
[`roxmltree`](https://crates.io/crates/roxmltree) could be a good candidate for XML parsing. It was written for `resvg` because other XML parsers were too complex and bloated. It has zero dependencies, 100% safe code,...
It's tempting to just use `fast_image_resize` - or at least its fallback implementation, and perhaps make all the unsafe SIMD intrinsics an opt-in feature like we did with `rav1e` and...
> Since the cargo-afl and cargo-fuzz jobs use the latest nightly toolchain, dependencies will usually have to be re-compiled between runs anyway. We could switch to a specific, pinned nightly...
I see two downsides to having the C libwebp around: 1. The risk of memory safety vulnerabilities due to inherently unsafe C code 2. More complicated build process (incl. cross-compilation)...
I see MSRV has been bumped to 1.67 since, which is higher than this PR's requirement of 1.64. I understand there is nothing blocking this, and it can be merged?...
This `Vec` can also exceed allocation limits: #286 I was about to work on adding support for limits, but I see there are in-flight PRs touching this code, so I'll...
The flag is needed to make sure the audit info is not removed by the linker. Without `--undefined` the linker would notice that the symbol is never used and remove...
I believe this is an issue with Zig, and it needs to be modified to recognize this flag and pass it along to the linker. Other similar PRs dealing with...
Does `abscissa` know the name of the binary? If so, it should just use it internally in `CmdRunner::default()` If not, we'll have to just update documentation and examples instead to...