From 5ea9a32fa8a7b9d247045ed8c7feb57151d96322 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Thu, 23 May 2024 13:16:26 +0200 Subject: [PATCH] Simplify lint configuration Warnings are still denied in CI. --- src/lib.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 8663944..c62879f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -83,10 +83,7 @@ //! } //! ``` -#![deny(missing_docs)] -#![deny(warnings)] -#![deny(unreachable_pub)] -#![allow(clippy::pedantic)] +#![warn(unreachable_pub)] use std::sync::Arc;