Alexander Lopatin

Results 38 issues of Alexander Lopatin

- existing solution depends on [package cache](https://github.com/watchexec/cargo-watch/issues/136#issuecomment-557286880) which works slowly (about 12 seconds after last file write!) on a large project on encrypted fs - taking into account that I...

enhancement
help wanted

https://github.com/alopatindev/cargo-limit/issues/4 - pseduoterminal: vte? pts? - vte-rs usage example: https://github.com/polachok/pt

bug
help wanted

(Taking into account that `Currency` is `Copy`, so we put all its fields on stack) `Currency::minor_units` seems to be redundant, because it can be computed from something like `dec!(10).powd(-Currency::exponent)`

```rust use rusty_money::{crypto, Money}; fn main() { let text = "1.11111111111"; dbg!(Money::from_decimal(text.parse().unwrap(), crypto::ETH)); dbg!(Money::from_str(text, crypto::ETH)); } ``` ``` [src/main.rs:5] Money::from_decimal(text.parse().unwrap(), crypto::ETH) = Money { amount: 1.11111111111, currency: Currency { code:...

Similar to #74, it's currently not possible to add `Money` to `HashMap` / `HashSet`

Similar to #74, it's currently not possible to add `Currency` to `BTreeSet` / `BTreeMap`.