From 9a859e281a23d36c45659718d17f218b5aa8b552 Mon Sep 17 00:00:00 2001 From: John Nunley Date: Fri, 8 Jul 2022 19:19:55 -0700 Subject: [PATCH] Indicate that we forbid unsafe code Makes this show up as clean on `cargo-geiger` --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index 4790e08..3c15b19 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,5 @@ #![no_std] +#![forbid(unsafe_code)] #[macro_export] macro_rules! impl_mirrored {