From 8ec234ba7869f70262dba637ae62f156145684d2 Mon Sep 17 00:00:00 2001 From: Stas Kelvich Date: Mon, 5 Jul 2021 23:14:25 +0300 Subject: [PATCH] fix tokio features set for proxy standalone build --- proxy/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxy/Cargo.toml b/proxy/Cargo.toml index 9dfa2ec914..051a070f2f 100644 --- a/proxy/Cargo.toml +++ b/proxy/Cargo.toml @@ -14,7 +14,7 @@ rand = "0.8.3" hex = "0.4.3" serde = "1" serde_json = "1" -tokio = "1.7.1" +tokio = { version = "1.7.1", features = ["full"] } tokio-postgres = "0.7.2" clap = "2.33.0"