Export sync::Barrier from tokio::sync (#1577)

This commit is contained in:
Jon Gjengset 2019-09-19 21:32:35 -04:00 committed by GitHub
parent 80ba2a4ff6
commit 6611b32cce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,5 +13,6 @@
//! - [watch](watch/index.html), a single-producer, multi-consumer channel that
//! only stores the **most recently** sent value.
pub use tokio_sync::Barrier;
pub use tokio_sync::{mpsc, oneshot, watch};
pub use tokio_sync::{Mutex, MutexGuard};