You've already forked authentication-service
mirror of
https://github.com/matrix-org/matrix-authentication-service.git
synced 2025-07-29 22:01:14 +03:00
Bump tracing from 0.1.34 to 0.1.35
Bumps [tracing](https://github.com/tokio-rs/tracing) from 0.1.34 to 0.1.35. - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-0.1.34...tracing-0.1.35) --- updated-dependencies: - dependency-name: tracing dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
committed by
Quentin Gliech
parent
b1a17194b7
commit
3f9863e7d3
10
Cargo.lock
generated
10
Cargo.lock
generated
@ -4739,9 +4739,9 @@ checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "tracing"
|
name = "tracing"
|
||||||
version = "0.1.34"
|
version = "0.1.35"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "5d0ecdcb44a79f0fe9844f0c4f33a342cbcbb5117de8001e6ba0dc2351327d09"
|
checksum = "a400e31aa60b9d44a52a8ee0343b5b18566b03a8321e0d321f695cf56e940160"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"cfg-if",
|
"cfg-if",
|
||||||
"log",
|
"log",
|
||||||
@ -4774,11 +4774,11 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "tracing-core"
|
name = "tracing-core"
|
||||||
version = "0.1.26"
|
version = "0.1.27"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "f54c8ca710e81886d498c2fd3331b56c93aa248d49de2222ad2742247c60072f"
|
checksum = "7709595b8878a4965ce5e87ebf880a7d39c9afc6837721b21a5a816a8117d921"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"lazy_static",
|
"once_cell",
|
||||||
"valuable",
|
"valuable",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
@ -26,7 +26,7 @@ sqlx = "0.5.13"
|
|||||||
thiserror = "1.0.31"
|
thiserror = "1.0.31"
|
||||||
tokio = "1.19.2"
|
tokio = "1.19.2"
|
||||||
tower = { version = "0.4.12", features = ["util"] }
|
tower = { version = "0.4.12", features = ["util"] }
|
||||||
tracing = "0.1.34"
|
tracing = "0.1.35"
|
||||||
url = "2.2.2"
|
url = "2.2.2"
|
||||||
|
|
||||||
# TODO: remove the config dependency by moving out the encrypter
|
# TODO: remove the config dependency by moving out the encrypter
|
||||||
|
@ -22,7 +22,7 @@ reqwest = { version = "0.11.10", features = ["rustls-tls"], default-features = f
|
|||||||
watchman_client = "0.7.2"
|
watchman_client = "0.7.2"
|
||||||
atty = "0.2.14"
|
atty = "0.2.14"
|
||||||
|
|
||||||
tracing = "0.1.34"
|
tracing = "0.1.35"
|
||||||
tracing-appender = "0.2.2"
|
tracing-appender = "0.2.2"
|
||||||
tracing-subscriber = { version = "0.3.11", features = ["env-filter"] }
|
tracing-subscriber = { version = "0.3.11", features = ["env-filter"] }
|
||||||
tracing-opentelemetry = "0.17.3"
|
tracing-opentelemetry = "0.17.3"
|
||||||
|
@ -7,7 +7,7 @@ license = "Apache-2.0"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
tokio = { version = "1.19.2", features = [] }
|
tokio = { version = "1.19.2", features = [] }
|
||||||
tracing = { version = "0.1.34", features = ["log"] }
|
tracing = { version = "0.1.35", features = ["log"] }
|
||||||
async-trait = "0.1.56"
|
async-trait = "0.1.56"
|
||||||
|
|
||||||
thiserror = "1.0.31"
|
thiserror = "1.0.31"
|
||||||
|
@ -9,7 +9,7 @@ license = "Apache-2.0"
|
|||||||
anyhow = "1.0.57"
|
anyhow = "1.0.57"
|
||||||
async-trait = "0.1.56"
|
async-trait = "0.1.56"
|
||||||
tokio = { version = "1.19.2", features = ["macros"] }
|
tokio = { version = "1.19.2", features = ["macros"] }
|
||||||
tracing = "0.1.34"
|
tracing = "0.1.35"
|
||||||
aws-sdk-sesv2 = "0.12.0"
|
aws-sdk-sesv2 = "0.12.0"
|
||||||
aws-config = "0.12.0"
|
aws-config = "0.12.0"
|
||||||
aws-types = "0.12.0"
|
aws-types = "0.12.0"
|
||||||
|
@ -10,7 +10,7 @@ license = "Apache-2.0"
|
|||||||
tokio = { version = "1.19.2", features = ["macros"] }
|
tokio = { version = "1.19.2", features = ["macros"] }
|
||||||
|
|
||||||
# Logging and tracing
|
# Logging and tracing
|
||||||
tracing = "0.1.34"
|
tracing = "0.1.35"
|
||||||
|
|
||||||
# Error management
|
# Error management
|
||||||
thiserror = "1.0.31"
|
thiserror = "1.0.31"
|
||||||
|
@ -25,5 +25,5 @@ thiserror = "1.0.31"
|
|||||||
tokio = { version = "1.19.2", features = ["sync", "parking_lot"] }
|
tokio = { version = "1.19.2", features = ["sync", "parking_lot"] }
|
||||||
tower = { version = "0.4.12", features = ["timeout", "limit"] }
|
tower = { version = "0.4.12", features = ["timeout", "limit"] }
|
||||||
tower-http = { version = "0.3.4", features = ["follow-redirect", "decompression-full", "set-header", "compression-full", "cors"] }
|
tower-http = { version = "0.3.4", features = ["follow-redirect", "decompression-full", "set-header", "compression-full", "cors"] }
|
||||||
tracing = "0.1.34"
|
tracing = "0.1.35"
|
||||||
tracing-opentelemetry = "0.17.3"
|
tracing-opentelemetry = "0.17.3"
|
||||||
|
@ -14,5 +14,5 @@ futures-util = "0.3.21"
|
|||||||
reqwest = { version = "0.11.10", features = ["blocking", "rustls-tls"], default-features = false }
|
reqwest = { version = "0.11.10", features = ["blocking", "rustls-tls"], default-features = false }
|
||||||
serde = { version = "1.0.137", features = ["derive"] }
|
serde = { version = "1.0.137", features = ["derive"] }
|
||||||
tokio = { version = "1.19.2", features = ["full"] }
|
tokio = { version = "1.19.2", features = ["full"] }
|
||||||
tracing = "0.1.34"
|
tracing = "0.1.35"
|
||||||
tracing-subscriber = "0.3.11"
|
tracing-subscriber = "0.3.11"
|
||||||
|
@ -32,7 +32,7 @@ signature = "1.5.0"
|
|||||||
thiserror = "1.0.31"
|
thiserror = "1.0.31"
|
||||||
tokio = { version = "1.19.2", features = ["macros", "rt", "sync"] }
|
tokio = { version = "1.19.2", features = ["macros", "rt", "sync"] }
|
||||||
tower = { version = "0.4.12", features = ["util"] }
|
tower = { version = "0.4.12", features = ["util"] }
|
||||||
tracing = "0.1.34"
|
tracing = "0.1.35"
|
||||||
url = { version = "2.2.2", features = ["serde"] }
|
url = { version = "2.2.2", features = ["serde"] }
|
||||||
|
|
||||||
mas-iana = { path = "../iana" }
|
mas-iana = { path = "../iana" }
|
||||||
|
@ -12,7 +12,7 @@ serde = { version = "1.0.137", features = ["derive"] }
|
|||||||
serde_json = "1.0.81"
|
serde_json = "1.0.81"
|
||||||
thiserror = "1.0.31"
|
thiserror = "1.0.31"
|
||||||
tokio = { version = "1.19.2", features = ["io-util", "rt"] }
|
tokio = { version = "1.19.2", features = ["io-util", "rt"] }
|
||||||
tracing = "0.1.34"
|
tracing = "0.1.35"
|
||||||
wasmtime = "0.37.0"
|
wasmtime = "0.37.0"
|
||||||
|
|
||||||
mas-data-model = { path = "../data-model" }
|
mas-data-model = { path = "../data-model" }
|
||||||
|
@ -17,4 +17,4 @@ mime_guess = "2.0.4"
|
|||||||
rust-embed = "6.4.0"
|
rust-embed = "6.4.0"
|
||||||
tower = "0.4.12"
|
tower = "0.4.12"
|
||||||
tower-http = { version = "0.3.4", features = ["fs"] }
|
tower-http = { version = "0.3.4", features = ["fs"] }
|
||||||
tracing = "0.1.34"
|
tracing = "0.1.35"
|
||||||
|
@ -13,7 +13,7 @@ serde = { version = "1.0.137", features = ["derive"] }
|
|||||||
serde_json = "1.0.81"
|
serde_json = "1.0.81"
|
||||||
thiserror = "1.0.31"
|
thiserror = "1.0.31"
|
||||||
anyhow = "1.0.57"
|
anyhow = "1.0.57"
|
||||||
tracing = "0.1.34"
|
tracing = "0.1.35"
|
||||||
|
|
||||||
# Password hashing
|
# Password hashing
|
||||||
argon2 = { version = "0.4.0", features = ["password-hash"] }
|
argon2 = { version = "0.4.0", features = ["password-hash"] }
|
||||||
|
@ -10,7 +10,7 @@ tokio = "1.19.2"
|
|||||||
async-trait = "0.1.56"
|
async-trait = "0.1.56"
|
||||||
tokio-stream = "0.1.9"
|
tokio-stream = "0.1.9"
|
||||||
futures-util = "0.3.21"
|
futures-util = "0.3.21"
|
||||||
tracing = "0.1.34"
|
tracing = "0.1.35"
|
||||||
sqlx = { version = "0.5.13", features = ["runtime-tokio-rustls", "postgres"] }
|
sqlx = { version = "0.5.13", features = ["runtime-tokio-rustls", "postgres"] }
|
||||||
|
|
||||||
mas-storage = { path = "../storage" }
|
mas-storage = { path = "../storage" }
|
||||||
|
@ -9,7 +9,7 @@ license = "Apache-2.0"
|
|||||||
dev = []
|
dev = []
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
tracing = "0.1.34"
|
tracing = "0.1.35"
|
||||||
tokio = { version = "1.19.2", features = ["macros"] }
|
tokio = { version = "1.19.2", features = ["macros"] }
|
||||||
|
|
||||||
anyhow = "1.0.57"
|
anyhow = "1.0.57"
|
||||||
|
Reference in New Issue
Block a user