From 41f8aa368b7ed0b7d072f8996b5bbb460c91578d Mon Sep 17 00:00:00 2001 From: Lionel Sambuc Date: Tue, 21 Jan 2020 09:55:50 +0100 Subject: [PATCH] Prevent unsafe blocks for now --- src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index 5ef83e6..a4007e5 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,3 +1,5 @@ +#![forbid(unsafe_code)] + mod destructured; mod full_record;