fix: back to forbid unsafe (#2365)

This commit is contained in:
Keita Nonaka
2023-11-28 12:00:57 +01:00
committed by GitHub
parent 2e963cea9d
commit 6dd5d0be9d
+1 -3
View File
@@ -413,9 +413,7 @@
)]
#![deny(unreachable_pub)]
#![allow(elided_lifetimes_in_paths, clippy::type_complexity)]
// can't be `forbid` since we've vendored code from hyper-util that contains `unsafe`
// when hyper-util is on crates.io we can stop vendoring it and go back to `forbid`
#![deny(unsafe_code)]
#![forbid(unsafe_code)]
#![cfg_attr(docsrs, feature(doc_auto_cfg, doc_cfg))]
#![cfg_attr(test, allow(clippy::float_cmp))]
#![cfg_attr(not(test), warn(clippy::print_stdout, clippy::dbg_macro))]