Skip to content

Commit

Permalink
Merge #218
Browse files Browse the repository at this point in the history
218: expose sync::{Arc,Weak} r=stjepang a=yoshuawuyts

Ref #217. Exposes `std::sync::Arc` and `std::sync::Weak`. Thanks!

Co-authored-by: Yoshua Wuyts <[email protected]>
  • Loading branch information
bors[bot] and yoshuawuyts authored Sep 19, 2019
2 parents 8be7655 + fa31c63 commit 4aceee1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/sync/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@
//! # }) }
//! ```
#[doc(inline)]
pub use std::sync::{Arc, Weak};

pub use mutex::{Mutex, MutexGuard};
pub use rwlock::{RwLock, RwLockReadGuard, RwLockWriteGuard};

Expand Down

0 comments on commit 4aceee1

Please sign in to comment.