From 98e18f94ed79e53719bec2434568a1dea0cceeac Mon Sep 17 00:00:00 2001 From: Matisse Brard Date: Tue, 23 Jul 2024 14:54:41 +0200 Subject: [PATCH] chore: guarantee only Safe Rust is used --- src/bin/lgc.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/lgc.rs b/src/bin/lgc.rs index b428336..5689890 100644 --- a/src/bin/lgc.rs +++ b/src/bin/lgc.rs @@ -1,7 +1,7 @@ // Copyright (c) 2023 LogCraft, SAS. // SPDX-License-Identifier: MPL-2.0 -#![warn(unused_extern_crates)] +#![forbid(unsafe_code)] use anyhow::Result; use clap::builder::styling;