diff --git a/Cargo.lock b/Cargo.lock index c4c3d75c..f596b6f3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4155,9 +4155,9 @@ checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6" [[package]] name = "tracing" -version = "0.1.31" +version = "0.1.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f6c650a8ef0cd2dd93736f033d21cbd1224c5a967aa0c258d00fcf7dafef9b9f" +checksum = "4a1bdf54a7c28a2bbf701e1d2233f6c77f473486b94bee4f9678da5a148dca7f" dependencies = [ "cfg-if", "log", @@ -4179,9 +4179,9 @@ dependencies = [ [[package]] name = "tracing-attributes" -version = "0.1.19" +version = "0.1.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8276d9a4a3a558d7b7ad5303ad50b53d58264641b82914b7ada36bd762e7a716" +checksum = "2e65ce065b4b5c53e73bb28912318cb8c9e9ad3921f1d669eb0e68b4c8143a2b" dependencies = [ "proc-macro2", "quote", diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index f68cf012..888aaf09 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -25,7 +25,7 @@ atty = "0.2.14" rand = "0.8.5" data-encoding = "2.3.2" -tracing = "0.1.31" +tracing = "0.1.32" tracing-appender = "0.2.1" tracing-subscriber = { version = "0.3.9", features = ["env-filter"] } tracing-opentelemetry = "0.17.2" diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index 3b9476ed..f5b9f787 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.31", features = ["log"] } +tracing = { version = "0.1.32", features = ["log"] } async-trait = "0.1.52" thiserror = "1.0.30" diff --git a/crates/email/Cargo.toml b/crates/email/Cargo.toml index 1f5dd241..7c926036 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.52" tokio = { version = "1.17.0", features = ["macros"] } -tracing = "0.1.31" +tracing = "0.1.32" aws-sdk-sesv2 = "0.8.0" aws-config = "0.8.0" diff --git a/crates/handlers/Cargo.toml b/crates/handlers/Cargo.toml index 469cec78..416d5c1d 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.31" +tracing = "0.1.32" # Error management thiserror = "1.0.30" diff --git a/crates/http/Cargo.toml b/crates/http/Cargo.toml index 3a9549c7..05e14d7c 100644 --- a/crates/http/Cargo.toml +++ b/crates/http/Cargo.toml @@ -22,5 +22,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.4", features = ["follow-redirect", "decompression-full", "set-header", "compression-full"] } -tracing = "0.1.31" +tracing = "0.1.32" tracing-opentelemetry = "0.17.2" diff --git a/crates/iana-codegen/Cargo.toml b/crates/iana-codegen/Cargo.toml index 9b538c68..262ba949 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.9", features = ["blocking", "rustls-tls"], default-features = false } serde = { version = "1.0.136", features = ["derive"] } tokio = { version = "1.17.0", features = ["full"] } -tracing = "0.1.31" +tracing = "0.1.32" tracing-subscriber = "0.3.9" diff --git a/crates/storage/Cargo.toml b/crates/storage/Cargo.toml index 4a292940..23ad8979 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.31" +tracing = "0.1.32" warp = "0.3.2" # Password hashing diff --git a/crates/tasks/Cargo.toml b/crates/tasks/Cargo.toml index a0896def..0cd867ad 100644 --- a/crates/tasks/Cargo.toml +++ b/crates/tasks/Cargo.toml @@ -10,7 +10,7 @@ tokio = "1.17.0" async-trait = "0.1.52" tokio-stream = "0.1.8" futures-util = "0.3.21" -tracing = "0.1.31" +tracing = "0.1.32" 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 5f0ae762..e4c59824 100644 --- a/crates/templates/Cargo.toml +++ b/crates/templates/Cargo.toml @@ -9,7 +9,7 @@ license = "Apache-2.0" dev = [] [dependencies] -tracing = "0.1.31" +tracing = "0.1.32" tokio = { version = "1.17.0", features = ["macros"] } anyhow = "1.0.56" diff --git a/crates/warp-utils/Cargo.toml b/crates/warp-utils/Cargo.toml index fecca007..ad518781 100644 --- a/crates/warp-utils/Cargo.toml +++ b/crates/warp-utils/Cargo.toml @@ -21,7 +21,7 @@ serde_json = "1.0.79" serde_urlencoded = "0.7.1" data-encoding = "2.3.2" once_cell = "1.10.0" -tracing = "0.1.31" +tracing = "0.1.32" opentelemetry = "0.17.0" rand = "0.8.5" mime = "0.3.16"