bevy/crates/bevy_gltf
Jakob Hellermann 49ff42cc69 fix new clippy lints (#5160)
# Objective

- Nightly clippy lints should be fixed before they get stable and break CI
  
## Solution

- fix new clippy lints
- ignore `significant_drop_in_scrutinee` since it isn't relevant in our loop https://github.com/rust-lang/rust-clippy/issues/8987
```rust
for line in io::stdin().lines() {
    ...
}
```

Co-authored-by: Jakob Hellermann <hellermann@sipgate.de>
2022-07-01 13:41:23 +00:00
..
src fix new clippy lints (#5160) 2022-07-01 13:41:23 +00:00
Cargo.toml Add global init and get accessors for all newtyped TaskPools (#2250) 2022-06-09 02:43:24 +00:00