From 1863d39356b2d2c21e0ce60907616b43c4041b67 Mon Sep 17 00:00:00 2001 From: Kyle Simpson Date: Thu, 4 Feb 2021 02:38:09 +0000 Subject: [PATCH] Chore + Deps: Add the `log` feature to tracing --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 6cf8657..099dbe9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ version = "0.1.2" [dependencies] serde = { version = "1", features = ["derive"] } serde_json = "1" -tracing = "0.1" +tracing = { version = "0.1", features = ["log"] } tracing-futures = "0.2" [dependencies.async-trait]