From c80860c17e781d0dfab79ae620475c2a0a956c4e Mon Sep 17 00:00:00 2001 From: Age Manning Date: Tue, 14 Jul 2020 21:31:59 +0000 Subject: [PATCH] Correct environment compiling (#1350) Adds the macro feature to tokio to allow the environment crate to compile independently --- lighthouse/environment/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lighthouse/environment/Cargo.toml b/lighthouse/environment/Cargo.toml index 55bbfaceb1..32cabe761c 100644 --- a/lighthouse/environment/Cargo.toml +++ b/lighthouse/environment/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Paul Hauner "] edition = "2018" [dependencies] -tokio = "0.2.21" +tokio = { version = "0.2.21", features = ["macros"] } slog = { version = "2.5.2", features = ["max_level_trace"] } sloggers = "1.0.0" types = { "path" = "../../consensus/types" }