Sergey "Shnatsel" Davidoff

Results 305 issues of Sergey "Shnatsel" Davidoff

Profile: https://share.firefox.dev/4otLxuT You can clearly see that `::mul` eventually lowers into `core::core_arch::x86::sse::_mm_mul_ps` With `RUSTFLAGS=-C target-cpu=native` on Zen 4 it lowers into `core::core_arch::x86::avx512f::_mm512_mul_ps` instead. ~~Funnily enough, it's not even a big...

There's a parallel bzip2 decompressor in Go at https://github.com/cosnicolaou/pbzip2 and a parallel compressor in Rust at https://crates.io/crates/bzip2-os, but there doesn't seem to be a single library that can do both...

enhancement

Inspired by https://github.com/image-rs/image/pull/2654, I checked what formats image currently advertises as encodable as GIF, and La8 is one of them. It's not actually wired up so attempting to encode it...

PR #2372 added decoding hooks, so a third-party format implementation can be registered as a plugin and work through all the usual facilities in an abstract way. It also added...

Now that https://github.com/image-rs/image-extras exists, our read-only DDS support should be moved into that repo.

next: breaking

This happens in `image` from git on commit 9ad43485 (after v0.25.8 release) ## Expected The test files in `tests/images/png/16bpc` all have linear gamma indicated by the `gAMA` chunk. You can...

topic: formats
kind: incorrect

In wondermagick I want to be able to call `set_icc_profile` and `set_exif_metadata` on an encoder without a `match` that enumerates every single format. That requires a public API to go...

ImageDecoder trait has been refactored to be `dyn` compatible, but the ImageEncoder trait has not. This came up in https://github.com/image-rs/image/pull/2554#issuecomment-3222022599

kind: API

v0.19.x is the last release before dependency on cargo-util-schemas which pulls in lots of other dependencies

Uncommenting this line in #210 causes the test to fail: https://github.com/rust-secure-code/cargo-auditable/blob/6c39a181300a31553bebb55b26441fe7cad0a223/cargo-auditable/tests/it.rs#L593 This is using the fixture `runtime_and_dev_dep_with_different_features` which tests for over-zealous feature unification. If a package is used both as...

bug