Sergey "Shnatsel" Davidoff

Results 943 comments of Sergey "Shnatsel" Davidoff

https://github.com/rust-fuzz/targets provides a number of fuzzing targets already, although some are probably outdated. Also many projects have fuzzing harnesses in-tree, but not running on CI. https://github.com/Eh2406/auto-fuzz-test would also be of...

I'm about to port `crates-index` and `cargo-audit` from `git2` to `gitoxide` specifically because `gitoxide` supports `rustls`. I'd be very happy to see this issue fixed, and save myself and the...

There is even a RustSec advisory about OpenSSL prior to 0.9.x being vulnerable: https://rustsec.org/advisories/RUSTSEC-2016-0001.html Is there any progress on this? If not, then at least the fact that SSL support...

The [`sample_vec_at`](https://github.com/johannesvollmer/exrs/blob/49fece069f9bc1e21b252fe0e98311867c38f5d3/src/image/mod.rs#L498-L501) function is to blame.

Instead of creating a SmallVec for every pixel, you can have the caller provide a `&mut [u8]` to which the pixel will be written. This allows for a single allocation...

> Also, there is a function that avoids the allocation of the smallvec, returning an iterator instead. The iterator can be written into a pre allocated vector. Maybe this is...

I have an entire article written about this, but it's currently not published. Drop me a line at the email in my Github profile and I'll share the draft with...

Note that development has moved from https://github.com/etemesi254/zune-jpeg to https://github.com/etemesi254/zune-image repository, and the decoder is now **always single-threaded.** There have been API changes as well, so please take a look at...

> * we'll can replace ([JpegDecoder::scale](https://docs.rs/image/latest/image/codecs/jpeg/struct.JpegDecoder.html#method.scale)) with downsampling but it's odd I assume some combination of downsampling and plain old resizing will do the trick. For example, downsample only to...

All remaining panics on fuzzer inputs are fixed and the fuzzer has run for 250,000,000 inputs without any panics. It has also been tested for correctness on a whole imageboard,...