korrat
korrat
That sounds good. If you'd like, I can also try my hand on that and open a PR on the weekend.
The problem in this case is confusion between the group separator and the decimal separator. Euros use points (`.`) as group separator. That's why `€2.000` works (and isn't actually the...
@NobbZ, I agree, parsing (and probably also formatting) should be independent of the currency. The right way to go would probably be a locale-aware parser for `Decimal`, which `rusty_money` can...
Until this is implemented, [`Tap::tap_mut`](https://docs.rs/tap/1.0.1/tap/tap/trait.Tap.html#method.tap_mut) from the [`tap`](https://lib.rs/crates/tap) crate can be used as a workaround.
Is this still relevant? If so I'd like to take a look at this.
There is a [`futures-sink`](https://crates.io/crates/futures-sink) crate, that only includes the trait and has no dependencies. That should keep compile times down.
The effect of that directive is defining an equivalence relation between two commodities. It's similar to a price, but it is independent of time. For example, by specifying `C 1.00...
> > can you use `format_args!` > > I had the same idea 😉. Unfortunately, the implementation of `format_args` is aggressive about references and you basically can never "return" it:...
Another issue, which seems to be related. When adding an empty `_index.md` directly under content, I get the following error. ``` Building site... Error: Failed to build the site Error:...
On my Windows box, I can confirm that `next` fixes the issue with the top-level `_index.md`, and rust-lang/glob#112 fixes Sass files not being compiled. It seems that `next` also fixes...