From 69b1b098184bbf8d2ffce7bef5a7df032a1b2d7e Mon Sep 17 00:00:00 2001 From: Michael Hewson Date: Tue, 24 Nov 2020 17:00:32 -0500 Subject: [PATCH] remove dependency on `tracing`'s `log` feature fixes #2326 --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 791012e138..8c305e5e10 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +### v0.14.0 (unreleased) + +* **lib** remove dependency on `tracing`'s `log` feature, issue [#2326](https://github.com/hyperium/hyper/issues/2326) + ### v0.13.9 (2020-11-02) diff --git a/Cargo.toml b/Cargo.toml index 03b691c9d6..0e79a0073c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,7 @@ httpdate = "0.3" httparse = "1.0" h2 = { git = "https://github.com/hyperium/h2", optional = true } itoa = "0.4.1" -tracing = { version = "0.1", default-features = false, features = ["log", "std"] } +tracing = { version = "0.1", default-features = false, features = ["std"] } pin-project = "1.0" tower-service = "0.3" tokio = { version = "0.3.4", features = ["sync", "stream"] }