Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ignore checked_conversions pedantic clippy lint
warning: checked cast can be simplified --> src/fallback.rs:410:13 | 410 | assert!(s.len() <= u32::MAX as usize); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `u32::try_from(s.len()).is_ok()` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#checked_conversions = note: `-W clippy::checked-conversions` implied by `-W clippy::pedantic` = help: to override `-W clippy::pedantic` add `#[allow(clippy::checked_conversions)]`
- Loading branch information