fix: back to forbid unsafe (#2365)

This commit is contained in:
Keita Nonaka 2023-11-28 03:00:57 -08:00 committed by GitHub
parent 2e963cea9d
commit 6dd5d0be9d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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