From a5bf7a89006352683cf5a222e7d81d648cc4f47f Mon Sep 17 00:00:00 2001 From: Mark Drobnak Date: Fri, 10 Jul 2020 13:51:21 -0400 Subject: [PATCH] Enable the log feature of "again" --- Cargo.lock | 1 + autoendpoint/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index 37667f06d..4a83c9bff 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -266,6 +266,7 @@ name = "again" version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "wasm-timer 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", ] diff --git a/autoendpoint/Cargo.toml b/autoendpoint/Cargo.toml index ae973dc35..2a4664000 100644 --- a/autoendpoint/Cargo.toml +++ b/autoendpoint/Cargo.toml @@ -9,7 +9,7 @@ actix-http = "1.0" actix-web = "2.0" actix-rt = "1.0" actix-cors = "0.2.0" -again = { version = "0.1.2", default-features = false } +again = { version = "0.1.2", default-features = false, features = ["log"] } async-trait = "0.1.36" autopush_common = { path = "../autopush-common" } backtrace = "0.3"