Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ignore buggy clippy::assigning_clones lint
``` error: assigning the result of `ToOwned::to_owned()` may be inefficient --> src/stl/mod.rs:613:9 | 613 | mesh.name = name.to_owned(); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `clone_into()`: `name.clone_into(&mut mesh.name)` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#assigning_clones = note: `-D clippy::assigning-clones` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::assigning_clones)]` ```
- Loading branch information