You've already forked authentication-service
mirror of
https://github.com/matrix-org/matrix-authentication-service.git
synced 2025-07-31 09:24:31 +03:00
build(deps): bump tracing from 0.1.37 to 0.1.38
Bumps [tracing](https://github.com/tokio-rs/tracing) from 0.1.37 to 0.1.38. - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-0.1.37...tracing-0.1.38) --- 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
ac541f4dce
commit
343a21e3bc
11
Cargo.lock
generated
11
Cargo.lock
generated
@ -6236,11 +6236,10 @@ checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "tracing"
|
name = "tracing"
|
||||||
version = "0.1.37"
|
version = "0.1.38"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
|
checksum = "cf9cf6a813d3f40c88b0b6b6f29a5c95c6cdbf97c1f9cc53fb820200f5ad814d"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"cfg-if",
|
|
||||||
"log",
|
"log",
|
||||||
"pin-project-lite",
|
"pin-project-lite",
|
||||||
"tracing-attributes",
|
"tracing-attributes",
|
||||||
@ -6260,13 +6259,13 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "tracing-attributes"
|
name = "tracing-attributes"
|
||||||
version = "0.1.23"
|
version = "0.1.24"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a"
|
checksum = "0f57e3ca2a01450b1a921183a9c9cbfda207fd822cef4ccb00a65402cbba7a74"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2 1.0.56",
|
"proc-macro2 1.0.56",
|
||||||
"quote 1.0.26",
|
"quote 1.0.26",
|
||||||
"syn 1.0.109",
|
"syn 2.0.15",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
@ -25,7 +25,7 @@ serde_json = "1.0.96"
|
|||||||
thiserror = "1.0.40"
|
thiserror = "1.0.40"
|
||||||
tokio = "1.27.0"
|
tokio = "1.27.0"
|
||||||
tower = { version = "0.4.13", features = ["util"] }
|
tower = { version = "0.4.13", features = ["util"] }
|
||||||
tracing = "0.1.37"
|
tracing = "0.1.38"
|
||||||
url = "2.3.1"
|
url = "2.3.1"
|
||||||
ulid = { version = "1.0.0", features = ["serde"] }
|
ulid = { version = "1.0.0", features = ["serde"] }
|
||||||
|
|
||||||
|
@ -28,7 +28,7 @@ tower-http = { version = "0.4.0", features = ["fs", "compression-full"] }
|
|||||||
url = "2.3.1"
|
url = "2.3.1"
|
||||||
watchman_client = "0.8.0"
|
watchman_client = "0.8.0"
|
||||||
|
|
||||||
tracing = "0.1.37"
|
tracing = "0.1.38"
|
||||||
tracing-appender = "0.2.2"
|
tracing-appender = "0.2.2"
|
||||||
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
|
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
|
||||||
tracing-opentelemetry = "0.19.0"
|
tracing-opentelemetry = "0.19.0"
|
||||||
|
@ -7,7 +7,7 @@ license = "Apache-2.0"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
tokio = { version = "1.27.0", features = ["fs", "rt"] }
|
tokio = { version = "1.27.0", features = ["fs", "rt"] }
|
||||||
tracing = { version = "0.1.37" }
|
tracing = { version = "0.1.38" }
|
||||||
async-trait = "0.1.68"
|
async-trait = "0.1.68"
|
||||||
|
|
||||||
thiserror = "1.0.40"
|
thiserror = "1.0.40"
|
||||||
|
@ -7,7 +7,7 @@ license = "Apache-2.0"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
async-trait = "0.1.68"
|
async-trait = "0.1.68"
|
||||||
tracing = "0.1.37"
|
tracing = "0.1.38"
|
||||||
thiserror = "1.0.40"
|
thiserror = "1.0.40"
|
||||||
headers = "0.3.8"
|
headers = "0.3.8"
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@ chrono = "0.4.24"
|
|||||||
serde = { version = "1.0.160", features = ["derive"] }
|
serde = { version = "1.0.160", features = ["derive"] }
|
||||||
thiserror = "1.0.40"
|
thiserror = "1.0.40"
|
||||||
tokio = { version = "1.27.0", features = ["sync"] }
|
tokio = { version = "1.27.0", features = ["sync"] }
|
||||||
tracing = "0.1.37"
|
tracing = "0.1.38"
|
||||||
ulid = "1.0.0"
|
ulid = "1.0.0"
|
||||||
url = "2.3.1"
|
url = "2.3.1"
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@ tokio = { version = "1.27.0", features = ["macros"] }
|
|||||||
futures-util = "0.3.28"
|
futures-util = "0.3.28"
|
||||||
|
|
||||||
# Logging and tracing
|
# Logging and tracing
|
||||||
tracing = "0.1.37"
|
tracing = "0.1.38"
|
||||||
|
|
||||||
# Error management
|
# Error management
|
||||||
thiserror = "1.0.40"
|
thiserror = "1.0.40"
|
||||||
|
@ -27,7 +27,7 @@ thiserror = "1.0.40"
|
|||||||
tokio = { version = "1.27.0", features = ["sync", "parking_lot"], optional = true }
|
tokio = { version = "1.27.0", features = ["sync", "parking_lot"], optional = true }
|
||||||
tower = { version = "0.4.13", features = [] }
|
tower = { version = "0.4.13", features = [] }
|
||||||
tower-http = { version = "0.4.0", features = ["cors"] }
|
tower-http = { version = "0.4.0", features = ["cors"] }
|
||||||
tracing = "0.1.37"
|
tracing = "0.1.38"
|
||||||
tracing-opentelemetry = "0.19.0"
|
tracing-opentelemetry = "0.19.0"
|
||||||
webpki = { version = "0.22.0", optional = true }
|
webpki = { version = "0.22.0", optional = true }
|
||||||
webpki-roots = { version = "0.23.0", optional = true }
|
webpki-roots = { version = "0.23.0", optional = true }
|
||||||
|
@ -15,5 +15,5 @@ futures-util = "0.3.28"
|
|||||||
hyper = { version = "0.14.16", features = ["tcp", "client", "http1"] }
|
hyper = { version = "0.14.16", features = ["tcp", "client", "http1"] }
|
||||||
serde = { version = "1.0.160", features = ["derive"] }
|
serde = { version = "1.0.160", features = ["derive"] }
|
||||||
tokio = { version = "1.27.0", features = ["macros", "rt-multi-thread", "fs", "io-util"] }
|
tokio = { version = "1.27.0", features = ["macros", "rt-multi-thread", "fs", "io-util"] }
|
||||||
tracing = "0.1.37"
|
tracing = "0.1.38"
|
||||||
tracing-subscriber = "0.3.17"
|
tracing-subscriber = "0.3.17"
|
||||||
|
@ -26,7 +26,7 @@ serde_with = { version = "2.3.2", features = ["base64"] }
|
|||||||
sha2 = { version = "0.10.6", features = ["oid"] }
|
sha2 = { version = "0.10.6", features = ["oid"] }
|
||||||
signature = "2.1.0"
|
signature = "2.1.0"
|
||||||
thiserror = "1.0.40"
|
thiserror = "1.0.40"
|
||||||
tracing = "0.1.37"
|
tracing = "0.1.38"
|
||||||
url = { version = "2.3.1", features = ["serde"] }
|
url = { version = "2.3.1", features = ["serde"] }
|
||||||
|
|
||||||
mas-iana = { path = "../iana" }
|
mas-iana = { path = "../iana" }
|
||||||
|
@ -16,7 +16,7 @@ tokio = { version = "1.27.0", features = ["net", "rt", "macros", "signal", "time
|
|||||||
tokio-rustls = "0.24.0"
|
tokio-rustls = "0.24.0"
|
||||||
tower-http = { version = "0.4.0", features = ["add-extension"] }
|
tower-http = { version = "0.4.0", features = ["add-extension"] }
|
||||||
tower-service = "0.3.2"
|
tower-service = "0.3.2"
|
||||||
tracing = "0.1.37"
|
tracing = "0.1.38"
|
||||||
libc = "0.2.142"
|
libc = "0.2.142"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
@ -37,7 +37,7 @@ serde_with = "2.3.2"
|
|||||||
thiserror = "1.0.40"
|
thiserror = "1.0.40"
|
||||||
tokio = { version = "1.27.0", features = ["rt", "macros", "rt-multi-thread"] }
|
tokio = { version = "1.27.0", features = ["rt", "macros", "rt-multi-thread"] }
|
||||||
tower = { version = "0.4.13", features = ["full"] }
|
tower = { version = "0.4.13", features = ["full"] }
|
||||||
tracing = "0.1.37"
|
tracing = "0.1.38"
|
||||||
url = { version = "2.3.1", features = ["serde"] }
|
url = { version = "2.3.1", features = ["serde"] }
|
||||||
|
|
||||||
mas-http = { path = "../http" }
|
mas-http = { path = "../http" }
|
||||||
|
@ -12,7 +12,7 @@ serde = { version = "1.0.160", features = ["derive"] }
|
|||||||
serde_json = "1.0.96"
|
serde_json = "1.0.96"
|
||||||
thiserror = "1.0.40"
|
thiserror = "1.0.40"
|
||||||
tokio = { version = "1.27.0", features = ["io-util"] }
|
tokio = { version = "1.27.0", features = ["io-util"] }
|
||||||
tracing = "0.1.37"
|
tracing = "0.1.38"
|
||||||
wasmtime = { version = "7.0.0", default-features = false, features = ["async", "cranelift"] }
|
wasmtime = { version = "7.0.0", default-features = false, features = ["async", "cranelift"] }
|
||||||
|
|
||||||
mas-data-model = { path = "../data-model" }
|
mas-data-model = { path = "../data-model" }
|
||||||
|
@ -12,7 +12,7 @@ chrono = { version = "0.4.24", features = ["serde"] }
|
|||||||
serde = { version = "1.0.160", features = ["derive"] }
|
serde = { version = "1.0.160", features = ["derive"] }
|
||||||
serde_json = "1.0.96"
|
serde_json = "1.0.96"
|
||||||
thiserror = "1.0.40"
|
thiserror = "1.0.40"
|
||||||
tracing = "0.1.37"
|
tracing = "0.1.38"
|
||||||
futures-util = "0.3.28"
|
futures-util = "0.3.28"
|
||||||
|
|
||||||
rand = "0.8.5"
|
rand = "0.8.5"
|
||||||
|
@ -16,7 +16,7 @@ opentelemetry = "0.19.0"
|
|||||||
rand_core = "0.6.4"
|
rand_core = "0.6.4"
|
||||||
serde = "1.0.160"
|
serde = "1.0.160"
|
||||||
serde_json = "1.0.96"
|
serde_json = "1.0.96"
|
||||||
tracing = "0.1.37"
|
tracing = "0.1.38"
|
||||||
tracing-opentelemetry = "0.19.0"
|
tracing-opentelemetry = "0.19.0"
|
||||||
url = "2.3.1"
|
url = "2.3.1"
|
||||||
ulid = "1.0.0"
|
ulid = "1.0.0"
|
||||||
|
@ -17,7 +17,7 @@ rand_chacha = "0.3.1"
|
|||||||
sqlx = { version = "0.6.3", features = ["runtime-tokio-rustls", "postgres"] }
|
sqlx = { version = "0.6.3", features = ["runtime-tokio-rustls", "postgres"] }
|
||||||
thiserror = "1.0.40"
|
thiserror = "1.0.40"
|
||||||
tower = "0.4.13"
|
tower = "0.4.13"
|
||||||
tracing = "0.1.37"
|
tracing = "0.1.38"
|
||||||
tracing-opentelemetry = "0.19.0"
|
tracing-opentelemetry = "0.19.0"
|
||||||
opentelemetry = "0.19.0"
|
opentelemetry = "0.19.0"
|
||||||
ulid = "1.0.0"
|
ulid = "1.0.0"
|
||||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
|||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
tracing = "0.1.37"
|
tracing = "0.1.38"
|
||||||
tokio = { version = "1.27.0", features = ["macros", "rt"] }
|
tokio = { version = "1.27.0", features = ["macros", "rt"] }
|
||||||
|
|
||||||
anyhow = "1.0.70"
|
anyhow = "1.0.70"
|
||||||
|
@ -8,7 +8,7 @@ license = "Apache-2.0"
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
aws-smithy-http = { version = "0.55.1", optional = true }
|
aws-smithy-http = { version = "0.55.1", optional = true }
|
||||||
http = "0.2.9"
|
http = "0.2.9"
|
||||||
tracing = "0.1.37"
|
tracing = "0.1.38"
|
||||||
tracing-opentelemetry = "0.19.0"
|
tracing-opentelemetry = "0.19.0"
|
||||||
tower = "0.4.13"
|
tower = "0.4.13"
|
||||||
tokio = { version = "1.27.0", features = ["time"] }
|
tokio = { version = "1.27.0", features = ["time"] }
|
||||||
|
Reference in New Issue
Block a user