Luca Ciucci
Luca Ciucci
Just created a macro for `popen` and `pclose` macro which are called `_popen` and `_pclose` for MSVC.
I had some problems while including cereal in my project using `FetchContent`, so I made some small modifications to the `CMakeLists.txt`: - renamed some options using the `CEREAL_` prefix to...
Prevent dependent projects that use FetchContent from exposing the glob install target
This was requested in #245. I just removed the `Copy` bound from the `Real` and replaced with `Clone` in `Float`. This would be a breaking change.
I wanted to generate bindings for Fortran, but I think this is not possible with the current version of `cbindgen`. I added the `CustomLanguage` trait and the corresponding `Language::Custom` variant,...
I was unable to compile on windows, I managed to fix this by explicitly telling clang the target triple. Similar situation: libui-rs/libui/pull/7
I could not find a way to represent images with rows ordered bottom-up. In Microsoft Media Foundations, they use [negative stride](https://learn.microsoft.com/en-us/windows/win32/medfound/mf-mt-default-stride-attribute) but the [`SampleLayout`](https://github.com/image-rs/image/blob/9429cb9cde2386d5fc9d22e0a9fda7eb35760154/src/flat.rs#L103C12-L103C24) struct does not handle this case....
This PR updates dependencies to replace a yanked version: - update `mozjpeg-sys` to v2.2.1 since [v0.10.4 is yanked](https://crates.io/crates/mozjpeg-sys/1.0.4) - update `libusb-sys` to v0.7.0
This would allow users to easily customize the bindings by inspecting the bindings items. Is there any particular reason why most of the modules are private? If the concern is...