diff --git a/Cargo.lock b/Cargo.lock index 640f75333e..10be9c3c5f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5577,18 +5577,18 @@ dependencies = [ [[package]] name = "thiserror" -version = "1.0.40" +version = "1.0.41" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac" +checksum = "c16a64ba9387ef3fdae4f9c1a7f07a0997fce91985c0336f1ddc1822b3b37802" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.40" +version = "1.0.41" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f" +checksum = "d14928354b01c4d6a4f0e549069adef399a284e7995c7ccca94e8a07a5346c59" dependencies = [ "proc-macro2", "quote", diff --git a/client_util/Cargo.toml b/client_util/Cargo.toml index 1324bb0a41..21530ca0e1 100644 --- a/client_util/Cargo.toml +++ b/client_util/Cargo.toml @@ -9,7 +9,7 @@ license.workspace = true [dependencies] http = "0.2.9" reqwest = { version = "0.11", default-features = false, features = ["stream", "rustls-tls"] } -thiserror = "1.0.40" +thiserror = "1.0.41" tonic = { workspace = true } tower = "0.4" workspace-hack = { version = "0.1", path = "../workspace-hack" } diff --git a/data_types/Cargo.toml b/data_types/Cargo.toml index 12a80d579b..a9507e3b6b 100644 --- a/data_types/Cargo.toml +++ b/data_types/Cargo.toml @@ -18,7 +18,7 @@ ordered-float = "3" schema = { path = "../schema" } sha2 = "0.10" sqlx = { version = "0.6", features = ["runtime-tokio-rustls", "postgres", "uuid"] } -thiserror = "1.0.40" +thiserror = "1.0.41" uuid = { version = "1", features = ["v4"] } workspace-hack = { version = "0.1", path = "../workspace-hack" } percent-encoding = "2.2.0" diff --git a/import_export/Cargo.toml b/import_export/Cargo.toml index d9712a579a..5247c2a84b 100644 --- a/import_export/Cargo.toml +++ b/import_export/Cargo.toml @@ -10,7 +10,7 @@ futures-util = { version = "0.3" } influxdb_iox_client = { path = "../influxdb_iox_client", features = ["flight", "format"] } observability_deps = { path = "../observability_deps" } serde_json = "1.0.100" -thiserror = "1.0.40" +thiserror = "1.0.41" tokio = { version = "1.29" } tokio-util = { version = "0.7.8" } workspace-hack = { version = "0.1", path = "../workspace-hack" } diff --git a/influxdb_iox/Cargo.toml b/influxdb_iox/Cargo.toml index db916f4a38..280d83d87c 100644 --- a/influxdb_iox/Cargo.toml +++ b/influxdb_iox/Cargo.toml @@ -70,7 +70,7 @@ rustyline = { version = "12.0", default-features = false, features = ["with-file serde_json = "1.0.100" snafu = "0.7" tempfile = "3.6.0" -thiserror = "1.0.40" +thiserror = "1.0.41" tikv-jemalloc-ctl = { version = "0.5.0", optional = true } tokio = { version = "1.29", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time", "io-std"] } tokio-stream = { version = "0.1", features = ["net"] } diff --git a/influxdb_iox_client/Cargo.toml b/influxdb_iox_client/Cargo.toml index 63fa1af735..0998022db1 100644 --- a/influxdb_iox_client/Cargo.toml +++ b/influxdb_iox_client/Cargo.toml @@ -27,7 +27,7 @@ schema = { path = "../schema" } serde_json = "1.0.100" tokio = { version = "1.29", features = ["macros", "parking_lot", "rt-multi-thread"] } tokio-stream = "0.1.13" -thiserror = "1.0.40" +thiserror = "1.0.41" tonic = { workspace = true } [dev-dependencies] diff --git a/ingester/Cargo.toml b/ingester/Cargo.toml index 0ccde38427..9e0b2a0b27 100644 --- a/ingester/Cargo.toml +++ b/ingester/Cargo.toml @@ -39,7 +39,7 @@ schema = { version = "0.1.0", path = "../schema" } service_grpc_catalog = { version = "0.1.0", path = "../service_grpc_catalog" } sharder = { version = "0.1.0", path = "../sharder" } test_helpers = { path = "../test_helpers", features = ["future_timeout"], optional = true } -thiserror = "1.0.40" +thiserror = "1.0.41" tokio = { version = "1.29", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] } tokio-util = "0.7.8" tonic = { workspace = true } diff --git a/iox_catalog/Cargo.toml b/iox_catalog/Cargo.toml index 3dd1283421..0bdb5e3fac 100644 --- a/iox_catalog/Cargo.toml +++ b/iox_catalog/Cargo.toml @@ -20,7 +20,7 @@ siphasher = "0.3" snafu = "0.7" sqlx = { version = "0.6", features = [ "runtime-tokio-rustls" , "postgres", "uuid", "sqlite" ] } sqlx-hotswap-pool = { path = "../sqlx-hotswap-pool" } -thiserror = "1.0.40" +thiserror = "1.0.41" tokio = { version = "1.29", features = ["io-util", "macros", "parking_lot", "rt-multi-thread", "time"] } uuid = { version = "1", features = ["v4"] } workspace-hack = { version = "0.1", path = "../workspace-hack" } diff --git a/ioxd_ingester/Cargo.toml b/ioxd_ingester/Cargo.toml index 7080efba05..e2f71e354f 100644 --- a/ioxd_ingester/Cargo.toml +++ b/ioxd_ingester/Cargo.toml @@ -18,7 +18,7 @@ iox_query = { version = "0.1.0", path = "../iox_query" } ioxd_common = { path = "../ioxd_common" } metric = { path = "../metric" } parquet_file = { version = "0.1.0", path = "../parquet_file" } -thiserror = "1.0.40" +thiserror = "1.0.41" tokio = { version = "1.29", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] } tokio-util = { version = "0.7.8" } trace = { path = "../trace" } diff --git a/ioxd_querier/Cargo.toml b/ioxd_querier/Cargo.toml index 7db5629412..ee0d72347a 100644 --- a/ioxd_querier/Cargo.toml +++ b/ioxd_querier/Cargo.toml @@ -30,7 +30,7 @@ trace = { path = "../trace" } arrow-flight = { workspace = true } async-trait = "0.1" hyper = "0.14" -thiserror = "1.0.40" +thiserror = "1.0.41" tokio = { version = "1.29", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] } tonic = { workspace = true } workspace-hack = { version = "0.1", path = "../workspace-hack" } diff --git a/ioxd_router/Cargo.toml b/ioxd_router/Cargo.toml index ff72e62d27..df856bf08d 100644 --- a/ioxd_router/Cargo.toml +++ b/ioxd_router/Cargo.toml @@ -18,7 +18,7 @@ metric = { path = "../metric" } mutable_batch = { path = "../mutable_batch" } object_store = { workspace = true } router = { path = "../router" } -thiserror = "1.0.40" +thiserror = "1.0.41" tokio-util = { version = "0.7.8" } trace = { path = "../trace" } workspace-hack = { version = "0.1", path = "../workspace-hack" } diff --git a/mutable_batch/Cargo.toml b/mutable_batch/Cargo.toml index 72b62cca07..f3d5c883da 100644 --- a/mutable_batch/Cargo.toml +++ b/mutable_batch/Cargo.toml @@ -18,7 +18,7 @@ hashbrown = { workspace = true } itertools = "0.11" workspace-hack = { version = "0.1", path = "../workspace-hack" } percent-encoding = "2.2.0" -thiserror = "1.0.40" +thiserror = "1.0.41" unicode-segmentation = "1.10.1" [dev-dependencies] diff --git a/parquet_file/Cargo.toml b/parquet_file/Cargo.toml index b119ee47e0..9000a7194e 100644 --- a/parquet_file/Cargo.toml +++ b/parquet_file/Cargo.toml @@ -22,7 +22,7 @@ pbjson-types = "0.5" prost = "0.11" schema = { path = "../schema" } snafu = "0.7" -thiserror = "1.0.40" +thiserror = "1.0.41" thrift = "0.17" tokio = { version = "1.29", features = ["macros", "parking_lot", "rt", "rt-multi-thread", "sync"] } uuid = { version = "1", features = ["v4"] } diff --git a/trogging/Cargo.toml b/trogging/Cargo.toml index 6eb5be372b..4736c7e2e4 100644 --- a/trogging/Cargo.toml +++ b/trogging/Cargo.toml @@ -11,7 +11,7 @@ clap = { version = "4", features = ["derive", "env"], optional = true } is-terminal = "0.4.7" logfmt = { path = "../logfmt" } observability_deps = { path = "../observability_deps" } -thiserror = "1.0.40" +thiserror = "1.0.41" tracing-log = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] } diff --git a/wal_inspect/Cargo.toml b/wal_inspect/Cargo.toml index 5f5aee7ab4..b8fb98defc 100644 --- a/wal_inspect/Cargo.toml +++ b/wal_inspect/Cargo.toml @@ -11,7 +11,7 @@ hashbrown.workspace = true mutable_batch = { version = "0.1.0", path = "../mutable_batch" } parquet_to_line_protocol = { version = "0.1.0", path = "../parquet_to_line_protocol" } schema = { version = "0.1.0", path = "../schema" } -thiserror = "1.0.40" +thiserror = "1.0.41" workspace-hack = { version = "0.1", path = "../workspace-hack" } [dev-dependencies] # In alphabetical order