Sergey "Shnatsel" Davidoff

Results 943 comments of Sergey "Shnatsel" Davidoff

> It’s coming in via the git2 crate Not as much "coming" as "people keep asking for it but it's unlikely to happen" given that the upstream libgit2 is barely...

> Snap affects the normal drawing modes? (oh boy. Freehand mode is already pretty complex!) I'd rather make it a separate drawing mode limited it to straight lines and snap...

PaintStorm Studio allows changing brush parameters (most importantly size) based on perspective guides set up by the user. It's really convenient to get perspective to affect brush size, as shown...

Turns out Krita implements a very similar thing already: https://docs.krita.org/Painting_With_Assistants

The image has some artifacts, the file is likely damaged but the C implementation tries to decode this anyway. Since it's an edge case it's probably low priority.

[`zune-jpeg`](https://crates.io/crates/zune-jpeg) can handle such images instead of panicking, so #1877 will fix this. It is expected to ship in the next semver-breaking release.

No issues after 10 million executions. I've run it without overflow checks and debug assertions, however. I was only interested in release-mode panics and memory safety issues.

I'm working on fuzzing in the RustFFT repo, yes: https://github.com/ejmahler/RustFFT/issues/110 But since you said that Symphonia uses RustFFT in specific and limited ways, I thought it might be a good...

The error originates in `cargo metadata` command that is part of the official Cargo distribution, and that `cargo auditable` runs to get information about the crates. I can reproduce the...

It seems to be a bug in `cargo`. It passes `--cfg 'feature="prodash"'` to `rustc` even though there is no such feature in the crate, only a `dep:` declaration. Then, when...