Markus Haug
Markus Haug
This PR adds a new argument `ignore` to the attribute macro, which expands into an `#[ignore]` attribute on the generated test function. A minimal test for this functionality is included,...
With the following code, I get an error when running tests with `cargo test`: ```rust #[assay] #[ignore] fn fail() { panic!(); } ``` The output is: ```shell $ cargo test...
Fixes #60
This PR adds a command-line argument to change the data directory for habitctl. Fixes #24
I'm trying to deserialize an XML document with the following structure, where inside the `Id` tag, there can be a choice of two elements. ```xml Id ``` I'm trying to...
Whenever I run needrestart (version 3.6) on my machine with an AMD processor, I get the message `Failed to check for processor microcode upgrades.` `sudo needrestart -v -w` output: ```...
The `futures` crate contains a [`Sink`](https://docs.rs/futures/0.3.5/futures/sink/trait.Sink.html) trait. This trait allows for a convenient interaction between its implementors and streams using the [`forward`](https://docs.rs/futures/0.3.5/futures/stream/trait.StreamExt.html#method.forward) method on the `StreamExt` trait. So I think...
Ledger supports a commodity conversion directive, which can be used to define two commodities as interchangeable for display purposes (see [section 4.7 of the Ledger manual](https://www.ledger-cli.org/3.0/doc/ledger3.html#Command-Directives)). Is there something similar...
Thank you so much for this very useful library! After using it for a while in some projects, I found one thing that bothers me a bit. For some errors,...
I'm trying to align a set of decimal numbers on the decimal point. From the decimal, I know how many fractional digits there are, so my idea was to format...