diff --git a/Cargo.lock b/Cargo.lock index c2f4d5f7d..f657813f6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4221,9 +4221,9 @@ checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6" [[package]] name = "tracing" -version = "0.1.33" +version = "0.1.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "80b9fa4360528139bc96100c160b7ae879f5567f49f1782b0b02035b0358ebf3" +checksum = "5d0ecdcb44a79f0fe9844f0c4f33a342cbcbb5117de8001e6ba0dc2351327d09" dependencies = [ "cfg-if", "log", diff --git a/crates/axum-utils/Cargo.toml b/crates/axum-utils/Cargo.toml index 4820a4d72..d8b205983 100644 --- a/crates/axum-utils/Cargo.toml +++ b/crates/axum-utils/Cargo.toml @@ -24,7 +24,7 @@ serde_json = "1.0.79" sqlx = "0.5.13" thiserror = "1.0.30" tokio = "1.17.0" -tracing = "0.1.33" +tracing = "0.1.34" url = "2.2.2" # TODO: remove the config dependency by moving out the encrypter diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 5efe9e71e..4ccf6e411 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -22,7 +22,7 @@ reqwest = { version = "0.11.10", features = ["rustls-tls"], default-features = f watchman_client = "0.7.2" atty = "0.2.14" -tracing = "0.1.33" +tracing = "0.1.34" tracing-appender = "0.2.2" tracing-subscriber = { version = "0.3.11", features = ["env-filter"] } tracing-opentelemetry = "0.17.2" diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index 82c440ff9..8499d0dec 100644 --- a/crates/config/Cargo.toml +++ b/crates/config/Cargo.toml @@ -7,7 +7,7 @@ license = "Apache-2.0" [dependencies] tokio = { version = "1.17.0", features = [] } -tracing = { version = "0.1.33", features = ["log"] } +tracing = { version = "0.1.34", features = ["log"] } async-trait = "0.1.53" thiserror = "1.0.30" diff --git a/crates/email/Cargo.toml b/crates/email/Cargo.toml index 47fa77d57..de89b1fa7 100644 --- a/crates/email/Cargo.toml +++ b/crates/email/Cargo.toml @@ -9,7 +9,7 @@ license = "Apache-2.0" anyhow = "1.0.56" async-trait = "0.1.53" tokio = { version = "1.17.0", features = ["macros"] } -tracing = "0.1.33" +tracing = "0.1.34" aws-sdk-sesv2 = "0.9.0" aws-config = "0.9.0" aws-types = "0.9.0" diff --git a/crates/handlers/Cargo.toml b/crates/handlers/Cargo.toml index 61b3d006d..4025e590d 100644 --- a/crates/handlers/Cargo.toml +++ b/crates/handlers/Cargo.toml @@ -13,7 +13,7 @@ dev = ["mas-static-files/dev", "mas-templates/dev"] tokio = { version = "1.17.0", features = ["macros"] } # Logging and tracing -tracing = "0.1.33" +tracing = "0.1.34" # Error management thiserror = "1.0.30" diff --git a/crates/http/Cargo.toml b/crates/http/Cargo.toml index b510d928d..ab144eba0 100644 --- a/crates/http/Cargo.toml +++ b/crates/http/Cargo.toml @@ -25,5 +25,5 @@ thiserror = "1.0.30" tokio = { version = "1.17.0", features = ["sync", "parking_lot"] } tower = { version = "0.4.12", features = ["timeout", "limit"] } tower-http = { version = "0.2.5", features = ["follow-redirect", "decompression-full", "set-header", "compression-full", "cors"] } -tracing = "0.1.33" +tracing = "0.1.34" tracing-opentelemetry = "0.17.2" diff --git a/crates/iana-codegen/Cargo.toml b/crates/iana-codegen/Cargo.toml index c1b363266..4dc014f8b 100644 --- a/crates/iana-codegen/Cargo.toml +++ b/crates/iana-codegen/Cargo.toml @@ -14,5 +14,5 @@ futures-util = "0.3.21" reqwest = { version = "0.11.10", features = ["blocking", "rustls-tls"], default-features = false } serde = { version = "1.0.136", features = ["derive"] } tokio = { version = "1.17.0", features = ["full"] } -tracing = "0.1.33" +tracing = "0.1.34" tracing-subscriber = "0.3.11" diff --git a/crates/storage/Cargo.toml b/crates/storage/Cargo.toml index 966bf199f..bb7be77ab 100644 --- a/crates/storage/Cargo.toml +++ b/crates/storage/Cargo.toml @@ -13,7 +13,7 @@ serde = { version = "1.0.136", features = ["derive"] } serde_json = "1.0.79" thiserror = "1.0.30" anyhow = "1.0.56" -tracing = "0.1.33" +tracing = "0.1.34" # Password hashing argon2 = { version = "0.4.0", features = ["password-hash"] } diff --git a/crates/tasks/Cargo.toml b/crates/tasks/Cargo.toml index 95434ab79..0ea59c628 100644 --- a/crates/tasks/Cargo.toml +++ b/crates/tasks/Cargo.toml @@ -10,7 +10,7 @@ tokio = "1.17.0" async-trait = "0.1.53" tokio-stream = "0.1.8" futures-util = "0.3.21" -tracing = "0.1.33" +tracing = "0.1.34" sqlx = { version = "0.5.13", features = ["runtime-tokio-rustls", "postgres"] } mas-storage = { path = "../storage" } diff --git a/crates/templates/Cargo.toml b/crates/templates/Cargo.toml index f0cd88ea3..ee478fa10 100644 --- a/crates/templates/Cargo.toml +++ b/crates/templates/Cargo.toml @@ -9,7 +9,7 @@ license = "Apache-2.0" dev = [] [dependencies] -tracing = "0.1.33" +tracing = "0.1.34" tokio = { version = "1.17.0", features = ["macros"] } anyhow = "1.0.56"