From 298be802492068d28b972069c5f654de124fd510 Mon Sep 17 00:00:00 2001 From: Shell Chen Date: Thu, 25 Jul 2019 23:07:33 +0800 Subject: [PATCH] tokio: include async-trait feature for uds (#1352) --- tokio/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio/Cargo.toml b/tokio/Cargo.toml index 9eb7f23ab..c25475f2f 100644 --- a/tokio/Cargo.toml +++ b/tokio/Cargo.toml @@ -83,7 +83,7 @@ tracing-core = { version = "0.1", optional = true } memchr = { version = "2.2", optional = true } [target.'cfg(unix)'.dependencies] -tokio-uds = { version = "0.3.0", optional = true, path = "../tokio-uds" } +tokio-uds = { version = "0.3.0", optional = true, path = "../tokio-uds", features = ["async-traits"] } [dev-dependencies] futures-preview = "0.3.0-alpha.17"