Tim Diekmann

Results 73 comments of Tim Diekmann

Maybe you could also consider the use of the [EnumFlags](https://crates.io/crates/enumflags)-Crate, which would result in a similar api to the `vk.hpp`.

Any news on this?

Did you came up with a solution?

I was able to solve this issue by prepending the path to the working directory. I.e. let's assume I run `cargo clippy` in `/apps/my-crate`, I run ```sh cat results.sarif \...

> @TimDiekmann Could you make this change and re-approve? Thanks! Done

Hi @0x009922 and thanks for opening the issue. I will look into this, it feels wrong that the `map_err` is working but the trait extension on `Result` does not.

I investigated this further: - `Report::new(error: E)` does require `E: Context`. Neither `eyre::Report`, nor `anyhow::Error` implement `Context` (they don't implement `Error`). This means, it's not possible to construct `Report` from...

I had a quick call with @indietyp and we agreed that the first option is sub optimal due to the implications. Being able to enforce `C: Context` inside of `Report`...

Hi @Keon6 and apologizes for not responding for a fairly long time. > thread 'main' panicked at 'ninja_gn_binaries.py download failed Did you retry it? it seems to be a spurious...

The solution posted by @drew-vault sadly didn't work for us as we have to deal with arrays as well. However, I assume that the behavior observed is not intended and...