add deny(unsafe_op_in_unsafe_fn) back in

I can worry about the MSRV impact later, I just want a working build for now
This commit is contained in:
nora 2022-04-06 14:09:54 +02:00
parent 1ba2efbf6a
commit 5c33ba138f

View file

@ -1,6 +1,6 @@
#![no_std] #![no_std]
#![warn(rust_2018_idioms)] #![warn(rust_2018_idioms)]
#![cfg_attr(test, deny(unsafe_op_in_unsafe_fn))] // this is great, but MSRV :( #![deny(unsafe_op_in_unsafe_fn)]
#![warn(missing_docs)] #![warn(missing_docs)]
//! A crate for stuffing things into a pointer. //! A crate for stuffing things into a pointer.