Merge pull request #1155 from arik-so/graph_sync_crate
[rust-lightning] / lightning / src / lib.rs
index 66e6554f79589b6c1075003095427628577436ae..3f88a208e9d00da1976fafd6e42fbbf6c6ace030 100644 (file)
@@ -177,7 +177,7 @@ mod sync {
        #[cfg(test)]
        pub use debug_sync::*;
        #[cfg(not(test))]
-       pub use ::std::sync::{Arc, Mutex, Condvar, MutexGuard, RwLock, RwLockReadGuard};
+       pub use ::std::sync::{Arc, Mutex, Condvar, MutexGuard, RwLock, RwLockReadGuard, RwLockWriteGuard};
        #[cfg(not(test))]
        pub use crate::util::fairrwlock::FairRwLock;
 }