From e9aaacddbda25eeb56a40e4f5e85d616d5e08b74 Mon Sep 17 00:00:00 2001 From: Carl Lerche Date: Wed, 26 Jun 2019 16:54:15 -0700 Subject: [PATCH] tokio: re-export sync::{lock,mpsc} (#1208) These types have been updated already. --- tokio/src/sync.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio/src/sync.rs b/tokio/src/sync.rs index ab708fb51..c8fb75241 100644 --- a/tokio/src/sync.rs +++ b/tokio/src/sync.rs @@ -13,4 +13,4 @@ //! - [watch](watch/index.html), a single-producer, multi-consumer channel that //! only stores the **most recently** sent value. -pub use tokio_sync::{/*lock, mpsc,*/ oneshot, watch}; +pub use tokio_sync::{lock, mpsc, oneshot, watch};