From e22600153016ae3fb9ee55d12e02b3824fbd8c3f Mon Sep 17 00:00:00 2001 From: Dave Hrycyszyn Date: Wed, 15 Apr 2020 20:54:00 +0100 Subject: [PATCH] gateway: adding log related crates --- gateway/Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gateway/Cargo.toml b/gateway/Cargo.toml index 7cb8b78d92..dd87098f5d 100644 --- a/gateway/Cargo.toml +++ b/gateway/Cargo.toml @@ -7,9 +7,12 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] +dotenv = "0.15.0" futures-channel = "0.3" futures-util = { version = "0.3", default-features = false, features = ["async-await", "sink", "std"] } +log = "0.4" multi-tcp-client = { path = "../common/clients/multi-tcp-client" } +pretty_env_logger = "0.3" tokio = { version = "0.2", features = ["full"] } tokio-tungstenite = "0.10.1"