bevy/tools
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
..
build-templated-pages Bump Version after Release (#9106) 2023-07-10 21:19:27 +00:00
build-wasm-example don't enable filesystem_watcher when building for WebGPU (#9829) 2023-09-18 06:01:44 +00:00
ci Fix the clippy::explicit_iter_loop lint (#9834) 2023-09-19 03:35:22 +00:00
example-showcase example showcase: switch default api to webgpu (#9193) 2023-07-18 08:15:47 +00:00
publish.sh Bevy Asset V2 (#8624) 2023-09-07 02:07:27 +00:00