Skip to content
This repository was archived by the owner on Jan 6, 2025. It is now read-only.

Commit 4b7d003

Browse files
committed
Allow warnings for LSPS1
.. as implementation is not finished and we're hiding it anyways. This will be reverted once we
1 parent 28f91ac commit 4b7d003

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ mod prelude {
4242
pub mod events;
4343
pub mod lsps0;
4444
#[cfg(lsps1)]
45+
// TODO: disallow warnings once the implementation is finished
46+
#[allow(warnings)]
4547
pub mod lsps1;
4648
pub mod lsps2;
4749
mod manager;

src/sync/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#![allow(unused_imports)]
2+
13
#[cfg(feature = "std")]
24
pub use std::sync::{Arc, Condvar, Mutex, MutexGuard, RwLock, RwLockReadGuard, RwLockWriteGuard};
35

0 commit comments

Comments
 (0)