Merge pull request #543 from vbrandl/dependabot/cargo/tracing-bunyan-formatter-0.3.6

chore(deps): Bump tracing-bunyan-formatter from 0.3.4 to 0.3.6
This commit is contained in:
Valentin Brandl 2023-01-13 12:27:02 +01:00 committed by GitHub
commit 061d7f8e07
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 22 additions and 9 deletions

29
Cargo.lock generated
View File

@ -45,7 +45,7 @@ dependencies = [
"actix-rt",
"actix-service",
"actix-utils",
"ahash",
"ahash 0.7.6",
"base64 0.13.0",
"bitflags",
"brotli",
@ -178,7 +178,7 @@ dependencies = [
"actix-service",
"actix-utils",
"actix-web-codegen",
"ahash",
"ahash 0.7.6",
"bytes",
"bytestring",
"cfg-if",
@ -233,6 +233,18 @@ dependencies = [
"version_check",
]
[[package]]
name = "ahash"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bf6ccdb167abbf410dcb915cabd428929d7f6a04980b54a11f26a39f1c7f7107"
dependencies = [
"cfg-if",
"getrandom",
"once_cell",
"version_check",
]
[[package]]
name = "aho-corasick"
version = "0.7.18"
@ -292,7 +304,7 @@ dependencies = [
"actix-service",
"actix-tls",
"actix-utils",
"ahash",
"ahash 0.7.6",
"base64 0.13.0",
"bytes",
"cfg-if",
@ -856,7 +868,7 @@ version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "db0d4cf898abf0081f964436dc980e96670a0f36863e4b83aaacdb65c9d7ccc3"
dependencies = [
"ahash",
"ahash 0.7.6",
]
[[package]]
@ -1275,9 +1287,9 @@ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
[[package]]
name = "once_cell"
version = "1.13.0"
version = "1.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "18a6dbe30758c9f83eb00cbea4ac95966305f5a7772f3f42ebfc7fc7eddbd8e1"
checksum = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66"
[[package]]
name = "opaque-debug"
@ -2034,10 +2046,11 @@ dependencies = [
[[package]]
name = "tracing-bunyan-formatter"
version = "0.3.4"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2445962f94a813b2aaea29ceeccb6dce9fd3aa5b1cb45595cde755b00d021ad"
checksum = "78fa7c4b548e5c79a0300396f36f175da001e9933dfb5960b326db25fddbaee7"
dependencies = [
"ahash 0.8.2",
"gethostname",
"log",
"serde",

View File

@ -31,7 +31,7 @@ serde_derive = "1.0.137"
serde_json = "1.0.91"
tracing = "0.1.37"
tracing-actix-web = "0.7.2"
tracing-bunyan-formatter = "0.3.4"
tracing-bunyan-formatter = "0.3.6"
tracing-futures = "0.2.5"
tracing-log = "0.1.3"
tracing-subscriber = { version = "0.3.16", features = ["registry", "env-filter"] }