diff --git a/tokio/src/sync.rs b/tokio/src/sync.rs index 30471325f..368472355 100644 --- a/tokio/src/sync.rs +++ b/tokio/src/sync.rs @@ -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};