Skip to content

build(deps): bump codecov/codecov-action from 4.2.0 to 4.3.0 #3114

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

build(deps): bump codecov/codecov-action from 4.2.0 to 4.3.0 #3114

GitHub Actions / clippy succeeded Apr 15, 2024 in 1s

reviewdog [clippy] report

reported by reviewdog 🐶

Findings (0)
Filtered Findings (1)

awc/src/client/connector.rs|977 col 68| error: initializer for thread_local value can be made const
--> awc/src/client/connector.rs:977:68
|
977 | static TRUST_DNS_RESOLVER: RefCell<Option> = RefCell::new(None);
| ^^^^^^^^^^^^^^^^^^ help: replace with: const { RefCell::new(None) }
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#thread_local_initializer_can_be_made_const
= note: -D clippy::thread-local-initializer-can-be-made-const implied by -D warnings
= help: to override -D warnings add #[allow(clippy::thread_local_initializer_can_be_made_const)]