diff --git a/Cargo.lock b/Cargo.lock index 72539189..6cac2ad2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4219,9 +4219,9 @@ checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6" [[package]] name = "tracing" -version = "0.1.32" +version = "0.1.33" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a1bdf54a7c28a2bbf701e1d2233f6c77f473486b94bee4f9678da5a148dca7f" +checksum = "80b9fa4360528139bc96100c160b7ae879f5567f49f1782b0b02035b0358ebf3" dependencies = [ "cfg-if", "log", diff --git a/crates/axum-utils/Cargo.toml b/crates/axum-utils/Cargo.toml index 43d083eb..9eda62ea 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.11" thiserror = "1.0.30" tokio = "1.17.0" -tracing = "0.1.32" +tracing = "0.1.33" 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 500a49a1..41eb6f6e 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.32" +tracing = "0.1.33" tracing-appender = "0.2.2" tracing-subscriber = { version = "0.3.10", features = ["env-filter"] } tracing-opentelemetry = "0.17.2" diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index 1179800a..d3160b29 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.32", features = ["log"] } +tracing = { version = "0.1.33", features = ["log"] } async-trait = "0.1.53" thiserror = "1.0.30" diff --git a/crates/email/Cargo.toml b/crates/email/Cargo.toml index 7f22ccdd..47fa77d5 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.32" +tracing = "0.1.33" 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 ee7f5039..58e42a65 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.32" +tracing = "0.1.33" # Error management thiserror = "1.0.30" diff --git a/crates/http/Cargo.toml b/crates/http/Cargo.toml index 49a7f13b..b510d928 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.32" +tracing = "0.1.33" tracing-opentelemetry = "0.17.2" diff --git a/crates/iana-codegen/Cargo.toml b/crates/iana-codegen/Cargo.toml index afb7ef67..2342afe9 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.32" +tracing = "0.1.33" tracing-subscriber = "0.3.10" diff --git a/crates/storage/Cargo.toml b/crates/storage/Cargo.toml index 7c58803d..04913608 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.32" +tracing = "0.1.33" # Password hashing argon2 = { version = "0.4.0", features = ["password-hash"] } diff --git a/crates/tasks/Cargo.toml b/crates/tasks/Cargo.toml index 45b55c94..cabb3a41 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.32" +tracing = "0.1.33" sqlx = { version = "0.5.11", features = ["runtime-tokio-rustls", "postgres"] } mas-storage = { path = "../storage" } diff --git a/crates/templates/Cargo.toml b/crates/templates/Cargo.toml index f5f12516..f0cd88ea 100644 --- a/crates/templates/Cargo.toml +++ b/crates/templates/Cargo.toml @@ -9,7 +9,7 @@ license = "Apache-2.0" dev = [] [dependencies] -tracing = "0.1.32" +tracing = "0.1.33" tokio = { version = "1.17.0", features = ["macros"] } anyhow = "1.0.56"