Skip to content

Commit 4aceee1

Browse files
Merge #218
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]>
2 parents 8be7655 + fa31c63 commit 4aceee1

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Diff for: src/sync/mod.rs

+3
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@
2929
//! # }) }
3030
//! ```
3131
32+
#[doc(inline)]
33+
pub use std::sync::{Arc, Weak};
34+
3235
pub use mutex::{Mutex, MutexGuard};
3336
pub use rwlock::{RwLock, RwLockReadGuard, RwLockWriteGuard};
3437

0 commit comments

Comments
 (0)