bevy/crates/bevy_app
Joseph d5d355ae1f
Fix the clippy::explicit_iter_loop lint (#9834)
# Objective

Replace instances of

```rust
for x in collection.iter{_mut}() {
```

with

```rust
for x in &{mut} collection {
```

This also changes CI to no longer suppress this lint. Note that since
this lint only shows up when using clippy in pedantic mode, it was
probably unnecessary to suppress this lint in the first place.
2023-09-19 03:35:22 +00:00
..
src Fix the clippy::explicit_iter_loop lint (#9834) 2023-09-19 03:35:22 +00:00
Cargo.toml Bump Version after Release (#9106) 2023-07-10 21:19:27 +00:00