Skip to content

build(deps): bump JamesIves/github-pages-deploy-action from 4.6.0 to 4.6.1 #680

build(deps): bump JamesIves/github-pages-deploy-action from 4.6.0 to 4.6.1

build(deps): bump JamesIves/github-pages-deploy-action from 4.6.0 to 4.6.1 #680

GitHub Actions / clippy succeeded May 20, 2024 in 0s

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)]