Skip to content

build(deps): bump codecov/codecov-action from 4.3.0 to 4.3.1 #667

build(deps): bump codecov/codecov-action from 4.3.0 to 4.3.1

build(deps): bump codecov/codecov-action from 4.3.0 to 4.3.1 #667

GitHub Actions / clippy succeeded May 6, 2024 in 1s

reviewdog [clippy] report

reported by reviewdog 🐶

Findings (0)
Filtered Findings (1)

actix-cors/src/builder.rs|217 col 13| error: assigning the result of Clone::clone() may be inefficient
--> actix-cors/src/builder.rs:217:13
|
217 | cors.allowed_methods = ALL_METHODS_SET.clone();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use clone_from(): cors.allowed_methods.clone_from(&ALL_METHODS_SET)
|
= 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)]