From 04224cd6fca1353e7cb79d054f50caf837db4801 Mon Sep 17 00:00:00 2001 From: Wiktor Kwapisiewicz Date: Fri, 5 Apr 2024 13:35:48 +0200 Subject: [PATCH] Disallow using unsafe code Using unsafe blocks makes the fuzzer use more resources. See: https://github.com/wiktor-k/ssh-agent-lib/pull/38 Signed-off-by: Wiktor Kwapisiewicz --- ssh-agent-lib/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/ssh-agent-lib/src/lib.rs b/ssh-agent-lib/src/lib.rs index 38a6289..c3b2c42 100644 --- a/ssh-agent-lib/src/lib.rs +++ b/ssh-agent-lib/src/lib.rs @@ -1,5 +1,6 @@ #![doc = include_str!("../README.md")] #![deny(missing_debug_implementations)] +#![deny(unsafe_code)] pub mod proto;