From 1f4cc29d750e35b71d3ac1a70b018f0fba420a6b Mon Sep 17 00:00:00 2001 From: Marieke Westendorp Date: Tue, 12 Mar 2024 19:50:19 +0100 Subject: [PATCH] Remove ignoring of non-local definitions lint Since this is a nighly lint, it throws a warning when render is compiled on stable. The warning isn't thrown anymore anyways. --- src/bentopy/render/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bentopy/render/lib.rs b/src/bentopy/render/lib.rs index 13f27b5..2650176 100644 --- a/src/bentopy/render/lib.rs +++ b/src/bentopy/render/lib.rs @@ -1,4 +1,4 @@ -#![allow(non_local_definitions, dead_code)] +#![allow(dead_code)] use std::{path::PathBuf, str::FromStr};