Moritz Mœller
Moritz Mœller
Specifically for `f32` `TIFF`s and `OpenEXR`s. I can provide such files, to add to the `data` folder.
I understand `libheif` (the base for the `libheif-sys` and thus this crate) is under LGPL. I think a warning should be placed in the README about this. If a user...
It would be great if the crate also returned a [`num-rational::Ratio`](https://docs.rs/num-rational/latest/num_rational/struct.Ratio.html) `pixel_aspect` for image formats that support this. This would just be 1:1 for any image format that doesn't, or...
See subject. :grin:. I'm looking for a vector graphics renderer with `f32-`/`f16-`per channel color support. I.e. to use in an offline rendering/compositing context. This project looks like a contender but...
``` ❯ cargo cache --version cargo-cache 0.8.3 ``` ``` ❯ cargo cache -o 2024.04.01 error: The following required arguments were not provided: --remove-dir ``` ``` ❯ cargo cache --remove-if-older-than 2024.04.01...
See [RUSTSEC-2021-0153](https://osv.dev/vulnerability/RUSTSEC-2021-0153). Also see [here](https://github.com/lifthrasiir/rust-encoding/issues/127) for the resp. issue in the `encoding` repo. TLDR; `encoding` should be replaced with `encoding_rs`.
Running `cargo spellcheck` on [this repo of mine](https://github.com/virtualritz/uniform-cubic-splines) causes it to segfault. No other output. I'm a bit short on time atm; otherwise I'd have built `c-s` from source and...
What is needed to make this happen? As I'm working on the wrapper for OIIO I think this would be highly beneficial. :grin:
See ["Getter names follow Rust convention (C-GETTER)"](https://rust-lang.github.io/api-guidelines/naming.html#getter-names-follow-rust-convention-c-getter) in the official _Rust API Guidelines_ on naming. Specifically: ```rust egui_snarl::Snarl::get_node egui_snarl::Snarl::get_node_mut egui_snarl::Snarl::get_node_info egui_snarl::Snarl::get_node_info_mut ``` should be: ```rust egui_snarl::Snarl::node egui_snarl::Snarl::node_mut egui_snarl::Snarl::node_info egui_snarl::Snarl::node_info_mut ```
I heard most pointers + length would be replaced with `span`s of some sort going forward. In that spirit I would like to suggest a (breaking) change to `TextureOpt`. The...