FreezyLemon
FreezyLemon
Maybe exclude the `binary` tests from codecov? Seems like it's only those that are failing, and those don't contribute to coverage stats anyways, right?
Fix clippy errors please, and make jxl a feature. Might have to look at why this adds so much bloat before merging..
Sure, take your time. Just added another comment because I wasn't sure that I was clear enough in my review.
BTW I recommend using [cargo-hack](https://github.com/taiki-e/cargo-hack) to validate MSRV (and other things): `cargo +1.70 hack --each-feature check` Might be worth adding something to CI, although a job like that would take...
On second thought, maybe add a comment in the Cargo.toml that clap is held back for MSRV reasons?
We spent some time on improving the CI jobs in rust-av recently, so I can take a look at this. It should be good enough to run `cargo check` for...
Those `args` are just being used for the `abuffer` audio source, which just specifies the *input* arguments. So that seems correct. What's causing the issues here is the encoder being...
> Given these are representations of file formats we do not control, nor fully understand, there will need to be a semver carve out for them, details undecided as yet....
For future reference: 1.83 - 1.89: various new or newly const pointer APIs [1.82](https://blog.rust-lang.org/2024/10/17/Rust-1.82.0.html) contains: - [Native syntax for creating a raw pointer](https://blog.rust-lang.org/2024/10/17/Rust-1.82.0.html#native-syntax-for-creating-a-raw-pointer): unlikely to be important for this crate...
Just a thought: Instead of a library with "external" rendering, how about reading the .svg file (it's XML) and "translating" that to drawables directly? I found a small library which...