From 3855f373d3b5eaf4e63e6ec2b334e46c6b50f670 Mon Sep 17 00:00:00 2001 From: Carl Lerche Date: Wed, 10 Jul 2019 11:21:27 -0700 Subject: [PATCH] tokio: re-export tokio-uds (#1282) The tokio-uds crate has been previously updated to std::future. This commit enables the re-export in the tokio facade crate. --- tokio/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tokio/Cargo.toml b/tokio/Cargo.toml index 2f11aa50a15..1963c16c27b 100644 --- a/tokio/Cargo.toml +++ b/tokio/Cargo.toml @@ -35,7 +35,7 @@ default = [ "tcp", "timer", "udp", -# "uds", + "uds", ] codec = ["io", "tokio-codec"] @@ -57,7 +57,7 @@ sync = ["tokio-sync"] tcp = ["tokio-tcp"] timer = ["tokio-timer"] udp = ["tokio-udp"] -#uds = ["tokio-uds"] +uds = ["tokio-uds"] [dependencies] # Only non-optional dependency...