Guiguiprim
Guiguiprim
Hey, I was doing some build-time profiling on a project and tried `cargo llvm-lines` which helps visualizing the amount of code generated by the monomorphization of generic functions. Doing so,...
This make it possible to generate only the messages in one crate (with dependencies only on `prost`) and the services in another crate (with dependencies on the messages crate and...
I have a use case that is maybe half a hack. ``` > cd $WORKSPACE > cargo build # Builds all binaries > cargo test # Some tests use some...
My next maybe weird feature request. This is somehow related to https://github.com/nextest-rs/nextest/issues/27 or at least could be a first step for it. ## My initial use case I have a...
A dependency that use `std::option_env!()` cause systematic rebuild. In my case: the dependency is the crate `obfstr` since version 0.4.0. It tries to read `OBFSTR_SEED` that I do not define....
## Issue When defining environment variables in a build script within a workspace, they are not correctly handle by the cache. This is visible in non incremental build (in release...
Add support for fallible allocation by adding `BytesMut::try_reserve()`. This does change the MSRV to 1.57, so I don't know how we should handle it. Adding it under a feature flag,...
This sit on top of https://github.com/danieldulaney/windows-permissions-rs/pull/19 Fix a `Sid` leak in `LookupAccountName()` due to the use of `Box` instead of `LocalBox`
### Suggestion Hey, Using `windows-rs 0.52.0` I had my own `Variant` helper. In `windows-rs 0.54.0` I see that `windows::core::Variant` was added, which is nice. With that change, all `Windows::Win32::System::Variant::VARIANT*` where...