From a0f028a008cf112ddafd808efbf998a0f2cbbdc1 Mon Sep 17 00:00:00 2001 From: Basti Ortiz <39114273+Some-Dood@users.noreply.github.com> Date: Mon, 15 Aug 2022 00:01:12 +0800 Subject: [PATCH] Fix(tokio-postgres): declare dependency on `net` feature --- tokio-postgres/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio-postgres/Cargo.toml b/tokio-postgres/Cargo.toml index ecd6c7fa..57af5676 100644 --- a/tokio-postgres/Cargo.toml +++ b/tokio-postgres/Cargo.toml @@ -62,7 +62,7 @@ tokio-util = { version = "0.7", features = ["codec"] } futures-executor = "0.3" criterion = "0.3" env_logger = "0.9" -tokio = { version = "1.0", features = ["macros", "rt"] } +tokio = { version = "1.0", features = ["macros", "net", "rt", "rt-multi-thread", "time"] } bit-vec-06 = { version = "0.6", package = "bit-vec" } chrono-04 = { version = "0.4", package = "chrono", default-features = false }