Jake Shadle
Jake Shadle
@jcbvm's fix worked for me as well.
@rubencaro Thanks for the tip, had this exact problem even though I had multiple `stdarg.h` version already. @cetra3 It's looking for that because of the way cc-rs creates executable names,...
It's this section here https://github.com/alexcrichton/cc-rs/blob/ad2ce008ec089a326bbebc7973225691a2816845/src/lib.rs#L1681-L1692
Actually when thinking about this recently I think the best path forward is to go back to an earlier idea I had which is to store these shared clarifications in...
This was _possibly_ fixed in #520
As mentioned there is already a way to get this behavior without changes to cargo-deny.
We're interested in doing this work so that we can feed structured test results to [this](https://buildkite.com/test-analytics). (Note that while it supports JUnit which nextest can already produce that option has...
From [here](https://buildkite.com/docs/test-analytics/importing-junit-xml): > While most test frameworks have a built-in JUnit XML export feature, these JUnit reports do not provide detailed span information. Therefore, features in Test Analytics that depend...
So I've got this mostly done, but I've hit a rather fundamental issue with how nextest-runner captures output, namely that it is split into 2 separate buffers for stdout and...
I've opened https://github.com/nextest-rs/nextest/pull/1086 as a draft, will create a helper for doing combined output in the same branch but can split it out into a separate PR if needed later.