Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This solves clippy warnings like this: ``` error: usage of a legacy numeric method --> src/common.rs:418:31 | 418 | Number::from(i32::min_value()).as_i64(), | ^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants = note: `-D clippy::legacy-numeric-constants` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::legacy_numeric_constants)]` help: use the associated constant instead | 418 | Number::from(i32::MIN).as_i64(), | ~~~ ```
- Loading branch information