Update tracing-subscriber and use tracing-tree when testing (#586)

This makes reading the logs way easier on the eyes.
This commit is contained in:
Anthony Ramine
2022-01-21 19:59:11 +01:00
committed by GitHub
parent d92ba1c45b
commit a28a39ca4a
2 changed files with 15 additions and 37 deletions

View File

@@ -7,9 +7,11 @@ edition = "2018"
[dependencies]
h2 = { path = "../..", features = ["stream", "unstable"] }
atty = "0.2"
bytes = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.2", default-features = false, features = ["fmt", "chrono", "ansi"] }
tracing-subscriber = { version = "0.3", default-features = false, features = ["fmt"] }
tracing-tree = "0.2"
futures = { version = "0.3", default-features = false }
http = "0.2"
tokio = { version = "1", features = ["time"] }