diff --git a/Cargo.lock b/Cargo.lock index 1dce72c446..95aba231e4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5254,18 +5254,18 @@ checksum = "b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb" [[package]] name = "thiserror" -version = "1.0.31" +version = "1.0.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd829fe32373d27f76265620b5309d0340cb8550f523c1dda251d6298069069a" +checksum = "f5f6586b7f764adc0231f4c79be7b920e766bb2f3e51b3661cdb263828f19994" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.31" +version = "1.0.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0396bc89e626244658bef819e22d0cc459e795a5ebe878e6ec336d1674a8d79a" +checksum = "12bafc5b54507e0149cdf1b145a5d80ab80a90bcd9275df43d4fff68460f6c21" dependencies = [ "proc-macro2", "quote", diff --git a/client_util/Cargo.toml b/client_util/Cargo.toml index d4f23db72a..fba92095f5 100644 --- a/client_util/Cargo.toml +++ b/client_util/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] http = "0.2.8" -thiserror = "1.0.31" +thiserror = "1.0.32" tonic = { version = "0.7" } tower = "0.4" workspace-hack = { path = "../workspace-hack"} diff --git a/influxdb_iox/Cargo.toml b/influxdb_iox/Cargo.toml index 0d6cafc9f4..4f1de50715 100644 --- a/influxdb_iox/Cargo.toml +++ b/influxdb_iox/Cargo.toml @@ -54,7 +54,7 @@ once_cell = { version = "1.13.0", features = ["parking_lot"] } rustyline = { version = "10.0", default-features = false } serde_json = "1.0.82" snafu = "0.7" -thiserror = "1.0.31" +thiserror = "1.0.32" tikv-jemalloc-ctl = { version = "0.4.0", optional = true } tokio = { version = "1.20", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] } tokio-stream = { version = "0.1", features = ["net"] } diff --git a/influxdb_iox_client/Cargo.toml b/influxdb_iox_client/Cargo.toml index 8643852496..abb4d98b71 100644 --- a/influxdb_iox_client/Cargo.toml +++ b/influxdb_iox_client/Cargo.toml @@ -26,7 +26,7 @@ bytes = "1.2" futures-util = { version = "0.3", optional = true } prost = "0.10" rand = "0.8.3" -thiserror = "1.0.31" +thiserror = "1.0.32" tonic = { version = "0.7" } [dev-dependencies] # In alphabetical order diff --git a/ioxd_compactor/Cargo.toml b/ioxd_compactor/Cargo.toml index b7205d9152..f1577a21ff 100644 --- a/ioxd_compactor/Cargo.toml +++ b/ioxd_compactor/Cargo.toml @@ -21,6 +21,6 @@ trace = { path = "../trace" } # Crates.io dependencies, in alphabetical order async-trait = "0.1" hyper = "0.14" -thiserror = "1.0.31" +thiserror = "1.0.32" workspace-hack = { path = "../workspace-hack"} parquet_file = { version = "0.1.0", path = "../parquet_file" } diff --git a/ioxd_ingester/Cargo.toml b/ioxd_ingester/Cargo.toml index 8405a52be2..1aa3bd79b0 100644 --- a/ioxd_ingester/Cargo.toml +++ b/ioxd_ingester/Cargo.toml @@ -19,5 +19,5 @@ write_buffer = { path = "../write_buffer" } # Crates.io dependencies, in alphabetical order async-trait = "0.1" hyper = "0.14" -thiserror = "1.0.31" +thiserror = "1.0.32" workspace-hack = { path = "../workspace-hack"} diff --git a/ioxd_querier/Cargo.toml b/ioxd_querier/Cargo.toml index 46f7d1e44a..eb69f7349c 100644 --- a/ioxd_querier/Cargo.toml +++ b/ioxd_querier/Cargo.toml @@ -26,7 +26,7 @@ write_buffer = { path = "../write_buffer" } arrow-flight = "19.0.0" async-trait = "0.1" hyper = "0.14" -thiserror = "1.0.31" +thiserror = "1.0.32" tokio = { version = "1.20", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] } tonic = "0.7" workspace-hack = { path = "../workspace-hack"} diff --git a/ioxd_router/Cargo.toml b/ioxd_router/Cargo.toml index 6d03b93aeb..e5bcc7b149 100644 --- a/ioxd_router/Cargo.toml +++ b/ioxd_router/Cargo.toml @@ -23,7 +23,7 @@ write_summary = { path = "../write_summary" } async-trait = "0.1" hashbrown = "0.12" hyper = "0.14" -thiserror = "1.0.31" +thiserror = "1.0.32" tokio = { version = "1.20", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] } tokio-util = { version = "0.7.3" } workspace-hack = { path = "../workspace-hack"} diff --git a/parquet_file/Cargo.toml b/parquet_file/Cargo.toml index 70f0f25b52..2ad2bc5d5a 100644 --- a/parquet_file/Cargo.toml +++ b/parquet_file/Cargo.toml @@ -29,4 +29,4 @@ tokio = { version = "1.20", features = ["macros", "parking_lot", "rt", "rt-multi uuid = { version = "1", features = ["v4"] } zstd = "0.11" workspace-hack = { path = "../workspace-hack"} -thiserror = "1.0.31" +thiserror = "1.0.32" diff --git a/trogging/Cargo.toml b/trogging/Cargo.toml index a67d020d0d..13866f4056 100644 --- a/trogging/Cargo.toml +++ b/trogging/Cargo.toml @@ -11,7 +11,7 @@ description = "IOx logging pipeline built upon tokio-tracing" clap = { version = "3", features = ["derive", "env"], optional = true } logfmt = { path = "../logfmt" } observability_deps = { path = "../observability_deps" } -thiserror = "1.0.31" +thiserror = "1.0.32" tracing-log = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }