From 1416e65a55a02f8754a736fdb897594b06c8168f Mon Sep 17 00:00:00 2001 From: Elias Rohrer Date: Fri, 5 Jan 2024 13:47:57 +0100 Subject: [PATCH] Allow warnings for LSPS1 .. as implementation is not finished and we're hiding it anyways. This will be reverted once we --- src/lib.rs | 2 ++ src/sync/mod.rs | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index e4b649c..8bf3189 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -42,6 +42,8 @@ mod prelude { pub mod events; pub mod lsps0; #[cfg(lsps1)] +// TODO: disallow warnings once the implementation is finished +#[allow(warnings)] pub mod lsps1; pub mod lsps2; mod manager; diff --git a/src/sync/mod.rs b/src/sync/mod.rs index 1371de2..e20f158 100644 --- a/src/sync/mod.rs +++ b/src/sync/mod.rs @@ -1,3 +1,5 @@ +#![allow(unused_imports)] + #[cfg(feature = "std")] pub use std::sync::{Arc, Condvar, Mutex, MutexGuard, RwLock, RwLockReadGuard, RwLockWriteGuard};