tracing should use parking lot too

This commit is contained in:
Bryan Stitt 2022-05-17 04:26:53 +00:00
parent 1aebcd2783
commit 58643d605c
2 changed files with 2 additions and 1 deletions

1
Cargo.lock generated
View File

@ -3637,6 +3637,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4bc28f93baff38037f64e6f43d34cfa1605f27a49c34e8a04c5e78b0babf2596"
dependencies = [
"ansi_term",
"parking_lot 0.12.0",
"sharded-slab",
"smallvec",
"thread_local",

View File

@ -32,7 +32,7 @@ tokio = { version = "1.18.2", features = ["full"] }
toml = "0.5.9"
tracing = "0.1.34"
# TODO: tracing-subscriber has serde and serde_json features that we might want to use
tracing-subscriber = "0.3.11"
tracing-subscriber = { version = "0.3.11", features = ["parking_lot"] }
url = "2.2.2"
# TODO: replace warp with axum?
warp = "0.3.2"