From 343a21e3bce5619e4b28144f997e5b67e6e2cf51 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 25 Apr 2023 19:59:26 +0000 Subject: [PATCH] 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] --- Cargo.lock | 11 +++++------ crates/axum-utils/Cargo.toml | 2 +- crates/cli/Cargo.toml | 2 +- crates/config/Cargo.toml | 2 +- crates/email/Cargo.toml | 2 +- crates/graphql/Cargo.toml | 2 +- crates/handlers/Cargo.toml | 2 +- crates/http/Cargo.toml | 2 +- crates/iana-codegen/Cargo.toml | 2 +- crates/jose/Cargo.toml | 2 +- crates/listener/Cargo.toml | 2 +- crates/oidc-client/Cargo.toml | 2 +- crates/policy/Cargo.toml | 2 +- crates/storage-pg/Cargo.toml | 2 +- crates/storage/Cargo.toml | 2 +- crates/tasks/Cargo.toml | 2 +- crates/templates/Cargo.toml | 2 +- crates/tower/Cargo.toml | 2 +- 18 files changed, 22 insertions(+), 23 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a3cc1b00..fcffdc81 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6236,11 +6236,10 @@ checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" [[package]] name = "tracing" -version = "0.1.37" +version = "0.1.38" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" +checksum = "cf9cf6a813d3f40c88b0b6b6f29a5c95c6cdbf97c1f9cc53fb820200f5ad814d" dependencies = [ - "cfg-if", "log", "pin-project-lite", "tracing-attributes", @@ -6260,13 +6259,13 @@ dependencies = [ [[package]] name = "tracing-attributes" -version = "0.1.23" +version = "0.1.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a" +checksum = "0f57e3ca2a01450b1a921183a9c9cbfda207fd822cef4ccb00a65402cbba7a74" dependencies = [ "proc-macro2 1.0.56", "quote 1.0.26", - "syn 1.0.109", + "syn 2.0.15", ] [[package]] diff --git a/crates/axum-utils/Cargo.toml b/crates/axum-utils/Cargo.toml index 5967b5ba..a2b80661 100644 --- a/crates/axum-utils/Cargo.toml +++ b/crates/axum-utils/Cargo.toml @@ -25,7 +25,7 @@ serde_json = "1.0.96" thiserror = "1.0.40" tokio = "1.27.0" tower = { version = "0.4.13", features = ["util"] } -tracing = "0.1.37" +tracing = "0.1.38" url = "2.3.1" ulid = { version = "1.0.0", features = ["serde"] } diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index c16e6aa4..9b059466 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -28,7 +28,7 @@ tower-http = { version = "0.4.0", features = ["fs", "compression-full"] } url = "2.3.1" watchman_client = "0.8.0" -tracing = "0.1.37" +tracing = "0.1.38" tracing-appender = "0.2.2" tracing-subscriber = { version = "0.3.17", features = ["env-filter"] } tracing-opentelemetry = "0.19.0" diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index 867e11ef..5de8fd7a 100644 --- a/crates/config/Cargo.toml +++ b/crates/config/Cargo.toml @@ -7,7 +7,7 @@ license = "Apache-2.0" [dependencies] tokio = { version = "1.27.0", features = ["fs", "rt"] } -tracing = { version = "0.1.37" } +tracing = { version = "0.1.38" } async-trait = "0.1.68" thiserror = "1.0.40" diff --git a/crates/email/Cargo.toml b/crates/email/Cargo.toml index f25c79f1..e9105f7c 100644 --- a/crates/email/Cargo.toml +++ b/crates/email/Cargo.toml @@ -7,7 +7,7 @@ license = "Apache-2.0" [dependencies] async-trait = "0.1.68" -tracing = "0.1.37" +tracing = "0.1.38" thiserror = "1.0.40" headers = "0.3.8" diff --git a/crates/graphql/Cargo.toml b/crates/graphql/Cargo.toml index cea731f9..c889cb4a 100644 --- a/crates/graphql/Cargo.toml +++ b/crates/graphql/Cargo.toml @@ -13,7 +13,7 @@ chrono = "0.4.24" serde = { version = "1.0.160", features = ["derive"] } thiserror = "1.0.40" tokio = { version = "1.27.0", features = ["sync"] } -tracing = "0.1.37" +tracing = "0.1.38" ulid = "1.0.0" url = "2.3.1" diff --git a/crates/handlers/Cargo.toml b/crates/handlers/Cargo.toml index 1d5d3278..5f4a3b0c 100644 --- a/crates/handlers/Cargo.toml +++ b/crates/handlers/Cargo.toml @@ -11,7 +11,7 @@ tokio = { version = "1.27.0", features = ["macros"] } futures-util = "0.3.28" # Logging and tracing -tracing = "0.1.37" +tracing = "0.1.38" # Error management thiserror = "1.0.40" diff --git a/crates/http/Cargo.toml b/crates/http/Cargo.toml index 3f78fa76..211c6348 100644 --- a/crates/http/Cargo.toml +++ b/crates/http/Cargo.toml @@ -27,7 +27,7 @@ thiserror = "1.0.40" tokio = { version = "1.27.0", features = ["sync", "parking_lot"], optional = true } tower = { version = "0.4.13", features = [] } tower-http = { version = "0.4.0", features = ["cors"] } -tracing = "0.1.37" +tracing = "0.1.38" tracing-opentelemetry = "0.19.0" webpki = { version = "0.22.0", optional = true } webpki-roots = { version = "0.23.0", optional = true } diff --git a/crates/iana-codegen/Cargo.toml b/crates/iana-codegen/Cargo.toml index 59eae17c..6eb75992 100644 --- a/crates/iana-codegen/Cargo.toml +++ b/crates/iana-codegen/Cargo.toml @@ -15,5 +15,5 @@ futures-util = "0.3.28" hyper = { version = "0.14.16", features = ["tcp", "client", "http1"] } serde = { version = "1.0.160", features = ["derive"] } 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" diff --git a/crates/jose/Cargo.toml b/crates/jose/Cargo.toml index 36765916..6b993e7a 100644 --- a/crates/jose/Cargo.toml +++ b/crates/jose/Cargo.toml @@ -26,7 +26,7 @@ serde_with = { version = "2.3.2", features = ["base64"] } sha2 = { version = "0.10.6", features = ["oid"] } signature = "2.1.0" thiserror = "1.0.40" -tracing = "0.1.37" +tracing = "0.1.38" url = { version = "2.3.1", features = ["serde"] } mas-iana = { path = "../iana" } diff --git a/crates/listener/Cargo.toml b/crates/listener/Cargo.toml index 34960ce2..f320dfac 100644 --- a/crates/listener/Cargo.toml +++ b/crates/listener/Cargo.toml @@ -16,7 +16,7 @@ tokio = { version = "1.27.0", features = ["net", "rt", "macros", "signal", "time tokio-rustls = "0.24.0" tower-http = { version = "0.4.0", features = ["add-extension"] } tower-service = "0.3.2" -tracing = "0.1.37" +tracing = "0.1.38" libc = "0.2.142" [dev-dependencies] diff --git a/crates/oidc-client/Cargo.toml b/crates/oidc-client/Cargo.toml index 924448bf..6f211c8b 100644 --- a/crates/oidc-client/Cargo.toml +++ b/crates/oidc-client/Cargo.toml @@ -37,7 +37,7 @@ serde_with = "2.3.2" thiserror = "1.0.40" tokio = { version = "1.27.0", features = ["rt", "macros", "rt-multi-thread"] } tower = { version = "0.4.13", features = ["full"] } -tracing = "0.1.37" +tracing = "0.1.38" url = { version = "2.3.1", features = ["serde"] } mas-http = { path = "../http" } diff --git a/crates/policy/Cargo.toml b/crates/policy/Cargo.toml index 35a55032..ce70aeb9 100644 --- a/crates/policy/Cargo.toml +++ b/crates/policy/Cargo.toml @@ -12,7 +12,7 @@ serde = { version = "1.0.160", features = ["derive"] } serde_json = "1.0.96" thiserror = "1.0.40" 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"] } mas-data-model = { path = "../data-model" } diff --git a/crates/storage-pg/Cargo.toml b/crates/storage-pg/Cargo.toml index 67a7424d..da8edf86 100644 --- a/crates/storage-pg/Cargo.toml +++ b/crates/storage-pg/Cargo.toml @@ -12,7 +12,7 @@ chrono = { version = "0.4.24", features = ["serde"] } serde = { version = "1.0.160", features = ["derive"] } serde_json = "1.0.96" thiserror = "1.0.40" -tracing = "0.1.37" +tracing = "0.1.38" futures-util = "0.3.28" rand = "0.8.5" diff --git a/crates/storage/Cargo.toml b/crates/storage/Cargo.toml index 93f8f297..4b4727ab 100644 --- a/crates/storage/Cargo.toml +++ b/crates/storage/Cargo.toml @@ -16,7 +16,7 @@ opentelemetry = "0.19.0" rand_core = "0.6.4" serde = "1.0.160" serde_json = "1.0.96" -tracing = "0.1.37" +tracing = "0.1.38" tracing-opentelemetry = "0.19.0" url = "2.3.1" ulid = "1.0.0" diff --git a/crates/tasks/Cargo.toml b/crates/tasks/Cargo.toml index e3be83e2..b77589b3 100644 --- a/crates/tasks/Cargo.toml +++ b/crates/tasks/Cargo.toml @@ -17,7 +17,7 @@ rand_chacha = "0.3.1" sqlx = { version = "0.6.3", features = ["runtime-tokio-rustls", "postgres"] } thiserror = "1.0.40" tower = "0.4.13" -tracing = "0.1.37" +tracing = "0.1.38" tracing-opentelemetry = "0.19.0" opentelemetry = "0.19.0" ulid = "1.0.0" diff --git a/crates/templates/Cargo.toml b/crates/templates/Cargo.toml index 56a0b52b..1fe65d9c 100644 --- a/crates/templates/Cargo.toml +++ b/crates/templates/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" [dependencies] -tracing = "0.1.37" +tracing = "0.1.38" tokio = { version = "1.27.0", features = ["macros", "rt"] } anyhow = "1.0.70" diff --git a/crates/tower/Cargo.toml b/crates/tower/Cargo.toml index 4006fada..844dcc69 100644 --- a/crates/tower/Cargo.toml +++ b/crates/tower/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0" [dependencies] aws-smithy-http = { version = "0.55.1", optional = true } http = "0.2.9" -tracing = "0.1.37" +tracing = "0.1.38" tracing-opentelemetry = "0.19.0" tower = "0.4.13" tokio = { version = "1.27.0", features = ["time"] }