From ed4e06c000d4b9bf49fc1d3bcd3b7292bb5069bb Mon Sep 17 00:00:00 2001 From: EdJoPaTo Date: Wed, 22 Feb 2023 14:03:53 +0100 Subject: [PATCH] build: ensure no unsafe code --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index 7eec708..70b114a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,5 @@ #![allow(clippy::must_use_candidate)] +#![forbid(unsafe_code)] use std::collections::HashSet;