From 89e8eeee8a081e4838322495bd82dd5b67f44866 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Oct 2023 22:40:53 +0000 Subject: [PATCH] Bump tracing from 0.1.37 to 0.1.40 Bumps [tracing](https://github.com/tokio-rs/tracing) from 0.1.37 to 0.1.40. - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-0.1.37...tracing-0.1.40) --- updated-dependencies: - dependency-name: tracing dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 15 +++++++-------- crates/ndc-sqlserver/Cargo.toml | 2 +- crates/query-engine/Cargo.toml | 2 +- 3 files changed, 9 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f940393e..9314f319 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1396,7 +1396,7 @@ version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "75e56d5c441965b6425165b7e3223cc933ca469834f4a8b4786817a1f9dc4f13" dependencies = [ - "indexmap 1.9.3", + "indexmap 2.0.2", "serde", "serde_json", ] @@ -2705,11 +2705,10 @@ checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" [[package]] name = "tracing" -version = "0.1.37" +version = "0.1.40" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" +checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" dependencies = [ - "cfg-if", "log", "pin-project-lite", "tracing-attributes", @@ -2718,9 +2717,9 @@ dependencies = [ [[package]] name = "tracing-attributes" -version = "0.1.26" +version = "0.1.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab" +checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" dependencies = [ "proc-macro2", "quote", @@ -2729,9 +2728,9 @@ dependencies = [ [[package]] name = "tracing-core" -version = "0.1.31" +version = "0.1.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a" +checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" dependencies = [ "once_cell", "valuable", diff --git a/crates/ndc-sqlserver/Cargo.toml b/crates/ndc-sqlserver/Cargo.toml index cd28822f..01c2249e 100644 --- a/crates/ndc-sqlserver/Cargo.toml +++ b/crates/ndc-sqlserver/Cargo.toml @@ -26,7 +26,7 @@ serde = "1.0.188" serde_derive = "^1.0" serde_json = { version = "1.0.107", features = ["raw_value"] } tokio = { version = "1.33.0", features = ["full"] } -tracing = "0.1.37" +tracing = "0.1.40" prometheus = "0.13.3" thiserror = "1.0" diff --git a/crates/query-engine/Cargo.toml b/crates/query-engine/Cargo.toml index 51bd1162..3e66e85b 100644 --- a/crates/query-engine/Cargo.toml +++ b/crates/query-engine/Cargo.toml @@ -19,7 +19,7 @@ schemars = { version = "0.8.15", features = ["smol_str"] } serde = { version = "1.0.188", features = ["derive"] } serde_json = "1.0.107" sqlformat = "0.2.2" -tracing = "0.1.37" +tracing = "0.1.40" [dev-dependencies] insta = { version = "1.34.0", features = ["json"] }