Skip to content

Commit

Permalink
Allow warnings for LSPS1
Browse files Browse the repository at this point in the history
.. as implementation is not finished and we're hiding it anyways. This
will be reverted once we
  • Loading branch information
tnull committed Jan 5, 2024
1 parent 7fb104e commit 1416e65
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 2 additions & 0 deletions src/sync/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![allow(unused_imports)]

#[cfg(feature = "std")]
pub use std::sync::{Arc, Condvar, Mutex, MutexGuard, RwLock, RwLockReadGuard, RwLockWriteGuard};

Expand Down

0 comments on commit 1416e65

Please sign in to comment.