chore: explicitly relaxed clippy lint for runtime entry macro by kate-shine · Pull Request #4030 · tokio-rs/tokio (original) (raw)
This change explicitly allows clippy::expect
for the .expect()
used in the entry macro
Motivation
Our projects have a strict clippy setting and currently, the tokio::main
macro breaks our pipelines.
Solution
#[allow(clippy::expect_used)]
for the runtime build command :)