Rain
Rain
Assuming you have e.g. a `HashMap
Hi, thanks for writing this plugin! I use it everyday :) I'm wondering if it can be extended to support the `//!` syntax used by rustdoc comments at the top...
### Problem If both an environment variable and `cargo --config ` are specified at the same time, the environment variable overrides the file passed in over the CLI. This is...
### Problem If someone runs the command: ``` cargo --config 'k=v' ``` then the config isn't passed down to the plugin. This was originally reported as https://github.com/nextest-rs/nextest/issues/498. ### Steps 1....
Will land this after clap v4 stabilizes.
One issue we're facing is that sometimes nextest just hangs if Ctrl-Z comes in at the wrong time: https://twitter.com/sunshowers6/status/1558264317283164160 This happens whether or not this patch is applied. Example backtrace:...
I'm using error-chain in some code: ```rust #[recursion_limit = "1024"] error_chain! { errors { Bundle2Decode(msg: String) { description("bundle2 decode error") display("{}", msg) } } } ``` and I'm trying to...
These two are different enough that I believe they warrant separate classes defined for them.
Consider a trial with name "my_test" and kind "foo". The text that gets printed out with `--list --format terse` is: ``` [foo] my_test: test ``` With libtest, an invariant is...
Hi there, thanks for the crate! While developing against the crate I found that human-readable serde impl's serializer is incorrect. For example, the following program: ```rust use bytesize::ByteSize; fn main()...