diff --git a/Cargo.lock b/Cargo.lock index 91859d0c6f..e5d8375180 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5804,9 +5804,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.25.0" +version = "1.26.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c8e00990ebabbe4c14c08aca901caed183ecd5c09562a12c824bb53d3c3fd3af" +checksum = "03201d01c3c27a29c8a5cee5b55a93ddae1ccf6f08f65365c2c918f8c1b76f64" dependencies = [ "autocfg", "bytes", @@ -5820,7 +5820,7 @@ dependencies = [ "socket2", "tokio-macros", "tracing", - "windows-sys 0.42.0", + "windows-sys 0.45.0", ] [[package]] diff --git a/backoff/Cargo.toml b/backoff/Cargo.toml index 781ccaf5a6..fc95505441 100644 --- a/backoff/Cargo.toml +++ b/backoff/Cargo.toml @@ -6,7 +6,7 @@ edition.workspace = true license.workspace = true [dependencies] -tokio = { version = "1.25", features = ["macros", "time"] } +tokio = { version = "1.26", features = ["macros", "time"] } observability_deps = { path = "../observability_deps" } rand = "0.8" snafu = "0.7" diff --git a/cache_system/Cargo.toml b/cache_system/Cargo.toml index 29d2a769f9..0c526b3e99 100644 --- a/cache_system/Cargo.toml +++ b/cache_system/Cargo.toml @@ -15,7 +15,7 @@ observability_deps = { path = "../observability_deps" } parking_lot = { version = "0.12", features = ["arc_lock"] } pdatastructs = { version = "0.7", default-features = false, features = ["fixedbitset"] } rand = "0.8.3" -tokio = { version = "1.25", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] } +tokio = { version = "1.26", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] } tokio-util = { version = "0.7.7" } trace = { path = "../trace"} workspace-hack = { version = "0.1", path = "../workspace-hack" } diff --git a/client_util/Cargo.toml b/client_util/Cargo.toml index f9dfa11372..6d740d6dc6 100644 --- a/client_util/Cargo.toml +++ b/client_util/Cargo.toml @@ -15,5 +15,5 @@ tower = "0.4" workspace-hack = { version = "0.1", path = "../workspace-hack" } [dev-dependencies] -tokio = { version = "1.25", features = ["macros", "parking_lot", "rt-multi-thread"] } +tokio = { version = "1.26", features = ["macros", "parking_lot", "rt-multi-thread"] } mockito = "0.32" diff --git a/compactor/Cargo.toml b/compactor/Cargo.toml index 09c734f609..f49500c88a 100644 --- a/compactor/Cargo.toml +++ b/compactor/Cargo.toml @@ -26,7 +26,7 @@ schema = { path = "../schema" } service_grpc_catalog = { path = "../service_grpc_catalog"} snafu = "0.7" thiserror = "1.0" -tokio = { version = "1.25", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] } +tokio = { version = "1.26", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] } tokio-util = { version = "0.7.7" } tonic = { version = "0.8" } uuid = { version = "1", features = ["v4"] } diff --git a/datafusion_util/Cargo.toml b/datafusion_util/Cargo.toml index b840ce56bb..1f6dbe3ce0 100644 --- a/datafusion_util/Cargo.toml +++ b/datafusion_util/Cargo.toml @@ -12,7 +12,7 @@ datafusion = { workspace = true } futures = "0.3" observability_deps = { path = "../observability_deps" } pin-project = "1.0" -tokio = { version = "1.25", features = ["parking_lot", "sync"] } +tokio = { version = "1.26", features = ["parking_lot", "sync"] } tokio-stream = "0.1" workspace-hack = { version = "0.1", path = "../workspace-hack" } diff --git a/executor/Cargo.toml b/executor/Cargo.toml index 2a5308da4d..5041365d3e 100644 --- a/executor/Cargo.toml +++ b/executor/Cargo.toml @@ -11,7 +11,7 @@ observability_deps = { path = "../observability_deps" } once_cell = { version = "1.17", features = ["parking_lot"] } parking_lot = "0.12" pin-project = "1.0" -tokio = { version = "1.25" } +tokio = { version = "1.26" } tokio-util = { version = "0.7.7" } workspace-hack = { version = "0.1", path = "../workspace-hack" } diff --git a/flightsql/Cargo.toml b/flightsql/Cargo.toml index 8d58887bcf..65c5ce7731 100644 --- a/flightsql/Cargo.toml +++ b/flightsql/Cargo.toml @@ -17,6 +17,6 @@ bytes = "1.4" futures = "0.3" snafu = "0.7" prost = "0.11" -tokio = { version = "1.25", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] } +tokio = { version = "1.26", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] } tonic = "0.8" workspace-hack = { version = "0.1", path = "../workspace-hack" } diff --git a/import/Cargo.toml b/import/Cargo.toml index 9ad256768d..befd5ba7c4 100644 --- a/import/Cargo.toml +++ b/import/Cargo.toml @@ -19,7 +19,7 @@ schema = { path = "../schema" } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0.93" thiserror = "1.0.38" -tokio = { version = "1.25" } +tokio = { version = "1.26" } tonic = { version = "0.8" } trogging = { path = "../trogging", features = ["clap"] } workspace-hack = { version = "0.1", path = "../workspace-hack" } diff --git a/influxdb2_client/Cargo.toml b/influxdb2_client/Cargo.toml index de51f099aa..8d9eee2f05 100644 --- a/influxdb2_client/Cargo.toml +++ b/influxdb2_client/Cargo.toml @@ -19,5 +19,5 @@ uuid = { version = "1", features = ["v4"] } mockito = "0.32" once_cell = { version = "1.17", features = ["parking_lot"] } parking_lot = "0.12" -tokio = { version = "1.25", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] } +tokio = { version = "1.26", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] } test_helpers = { path = "../test_helpers" } diff --git a/influxdb_iox/Cargo.toml b/influxdb_iox/Cargo.toml index e172394fc9..67e4e040cc 100644 --- a/influxdb_iox/Cargo.toml +++ b/influxdb_iox/Cargo.toml @@ -71,7 +71,7 @@ snafu = "0.7" tempfile = "3.4.0" thiserror = "1.0.38" tikv-jemalloc-ctl = { version = "0.5.0", optional = true } -tokio = { version = "1.25", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time", "io-std"] } +tokio = { version = "1.26", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time", "io-std"] } tokio-stream = { version = "0.1", features = ["net"] } tokio-util = { version = "0.7.7", features = ["compat"] } tonic = "0.8" diff --git a/influxdb_iox_client/Cargo.toml b/influxdb_iox_client/Cargo.toml index 3888464872..7bc1f65772 100644 --- a/influxdb_iox_client/Cargo.toml +++ b/influxdb_iox_client/Cargo.toml @@ -22,7 +22,7 @@ generated_types = { path = "../generated_types", default-features = false, featu prost = "0.11" rand = "0.8.3" reqwest = { version = "0.11", default-features = false, features = ["stream", "rustls-tls"] } -tokio = { version = "1.25", features = ["macros", "parking_lot", "rt-multi-thread"] } +tokio = { version = "1.26", features = ["macros", "parking_lot", "rt-multi-thread"] } tokio-stream = "0.1.12" thiserror = "1.0.38" tonic = { version = "0.8" } diff --git a/ingester/Cargo.toml b/ingester/Cargo.toml index ccd628e090..ee850ccafa 100644 --- a/ingester/Cargo.toml +++ b/ingester/Cargo.toml @@ -41,7 +41,7 @@ schema = { path = "../schema" } service_grpc_catalog = { path = "../service_grpc_catalog"} snafu = "0.7" thiserror = "1.0" -tokio = { version = "1.25", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] } +tokio = { version = "1.26", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] } tokio-util = { version = "0.7.7" } tonic = { version = "0.8" } trace = { path = "../trace" } diff --git a/ingester2/Cargo.toml b/ingester2/Cargo.toml index 70d1e9501a..8e7313739f 100644 --- a/ingester2/Cargo.toml +++ b/ingester2/Cargo.toml @@ -43,7 +43,7 @@ service_grpc_catalog = { version = "0.1.0", path = "../service_grpc_catalog" } sharder = { version = "0.1.0", path = "../sharder" } thiserror = "1.0.38" test_helpers = { path = "../test_helpers", features = ["future_timeout"], optional = true } -tokio = { version = "1.25", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] } +tokio = { version = "1.26", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] } tonic = "0.8.3" trace = { version = "0.1.0", path = "../trace" } uuid = "1.3.0" @@ -60,7 +60,7 @@ mutable_batch_lp = { path = "../mutable_batch_lp" } paste = "1.0.11" tempfile = "3.4.0" test_helpers = { path = "../test_helpers", features = ["future_timeout"] } -tokio = { version = "1.25", features = ["macros", "time", "test-util"] } +tokio = { version = "1.26", features = ["macros", "time", "test-util"] } [features] benches = ["test_helpers"] # Export some internal types for benchmark purposes only. diff --git a/iox_catalog/Cargo.toml b/iox_catalog/Cargo.toml index 1900365bc3..36719591f9 100644 --- a/iox_catalog/Cargo.toml +++ b/iox_catalog/Cargo.toml @@ -20,7 +20,7 @@ snafu = "0.7" sqlx = { version = "0.6", features = [ "runtime-tokio-rustls" , "postgres", "uuid", "sqlite" ] } sqlx-hotswap-pool = { path = "../sqlx-hotswap-pool" } thiserror = "1.0.38" -tokio = { version = "1.25", features = ["io-util", "macros", "parking_lot", "rt-multi-thread", "time"] } +tokio = { version = "1.26", 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/iox_data_generator/Cargo.toml b/iox_data_generator/Cargo.toml index 44d35559d2..507891709e 100644 --- a/iox_data_generator/Cargo.toml +++ b/iox_data_generator/Cargo.toml @@ -26,7 +26,7 @@ schema = { path = "../schema" } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0.93" snafu = "0.7" -tokio = { version = "1.25", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] } +tokio = { version = "1.26", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] } toml = "0.7.2" tracing = "0.1" tracing-subscriber = "0.3" diff --git a/iox_query/Cargo.toml b/iox_query/Cargo.toml index 1165ea160d..27ea70f11c 100644 --- a/iox_query/Cargo.toml +++ b/iox_query/Cargo.toml @@ -37,7 +37,7 @@ query_functions = { path = "../query_functions"} regex = "1" schema = { path = "../schema" } snafu = "0.7" -tokio = { version = "1.25", features = ["macros", "parking_lot"] } +tokio = { version = "1.26", features = ["macros", "parking_lot"] } tokio-stream = "0.1" trace = { path = "../trace" } predicate = { path = "../predicate" } diff --git a/iox_time/Cargo.toml b/iox_time/Cargo.toml index a1bcf057c3..0bea88e2b9 100644 --- a/iox_time/Cargo.toml +++ b/iox_time/Cargo.toml @@ -9,7 +9,7 @@ license.workspace = true [dependencies] chrono = { version = "0.4.23", default-features = false, features = ["clock", "std"] } parking_lot = "0.12" -tokio = { version = "1.25", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] } +tokio = { version = "1.26", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] } workspace-hack = { version = "0.1", path = "../workspace-hack" } [dev-dependencies] diff --git a/ioxd_common/Cargo.toml b/ioxd_common/Cargo.toml index eb9376e46d..c63de59c22 100644 --- a/ioxd_common/Cargo.toml +++ b/ioxd_common/Cargo.toml @@ -42,7 +42,7 @@ serde = { version = "1.0", features = ["derive"] } serde_json = "1.0.93" serde_urlencoded = "0.7.0" snafu = "0.7" -tokio = { version = "1.25", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] } +tokio = { version = "1.26", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] } tokio-stream = { version = "0.1", features = ["net"] } tokio-util = { version = "0.7.7" } tonic = "0.8" diff --git a/ioxd_ingester2/Cargo.toml b/ioxd_ingester2/Cargo.toml index b3a0583e18..6c5c59bdae 100644 --- a/ioxd_ingester2/Cargo.toml +++ b/ioxd_ingester2/Cargo.toml @@ -19,7 +19,7 @@ ioxd_common = { path = "../ioxd_common" } metric = { path = "../metric" } parquet_file = { version = "0.1.0", path = "../parquet_file" } thiserror = "1.0.38" -tokio = { version = "1.25", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] } +tokio = { version = "1.26", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] } tokio-util = { version = "0.7.7" } trace = { path = "../trace" } workspace-hack = { version = "0.1", path = "../workspace-hack" } diff --git a/ioxd_querier/Cargo.toml b/ioxd_querier/Cargo.toml index ca535dfde4..02e787aad7 100644 --- a/ioxd_querier/Cargo.toml +++ b/ioxd_querier/Cargo.toml @@ -28,7 +28,7 @@ arrow-flight = { workspace = true } async-trait = "0.1" hyper = "0.14" thiserror = "1.0.38" -tokio = { version = "1.25", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] } +tokio = { version = "1.26", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] } tonic = "0.8" workspace-hack = { version = "0.1", path = "../workspace-hack" } parquet_file = { version = "0.1.0", path = "../parquet_file" } diff --git a/ioxd_router/Cargo.toml b/ioxd_router/Cargo.toml index 0938230184..1372365d94 100644 --- a/ioxd_router/Cargo.toml +++ b/ioxd_router/Cargo.toml @@ -26,6 +26,6 @@ async-trait = "0.1" hashbrown = { workspace = true } hyper = "0.14" thiserror = "1.0.38" -tokio = { version = "1.25", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] } +tokio = { version = "1.26", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] } tokio-util = { version = "0.7.7" } workspace-hack = { version = "0.1", path = "../workspace-hack" } diff --git a/object_store_metrics/Cargo.toml b/object_store_metrics/Cargo.toml index f9ac0a0002..8fd80ad4ad 100644 --- a/object_store_metrics/Cargo.toml +++ b/object_store_metrics/Cargo.toml @@ -13,10 +13,10 @@ iox_time = { version = "0.1.0", path = "../iox_time" } metric = { version = "0.1.0", path = "../metric" } object_store = "0.5.4" pin-project = "1.0.12" -tokio = { version = "1.25", features = ["io-util"] } +tokio = { version = "1.26", features = ["io-util"] } workspace-hack = { version = "0.1", path = "../workspace-hack" } [dev-dependencies] # In alphabetical order dotenvy = "0.15.6" snafu = "0.7" -tokio = { version = "1.25", features = ["macros", "io-util"] } +tokio = { version = "1.26", features = ["macros", "io-util"] } diff --git a/parquet_file/Cargo.toml b/parquet_file/Cargo.toml index 168782ab61..ae3c73e45f 100644 --- a/parquet_file/Cargo.toml +++ b/parquet_file/Cargo.toml @@ -26,7 +26,7 @@ schema = { path = "../schema" } snafu = "0.7" thiserror = "1.0.38" thrift = "0.17" -tokio = { version = "1.25", features = ["macros", "parking_lot", "rt", "rt-multi-thread", "sync"] } +tokio = { version = "1.26", features = ["macros", "parking_lot", "rt", "rt-multi-thread", "sync"] } uuid = { version = "1", features = ["v4"] } zstd = "0.12" workspace-hack = { version = "0.1", path = "../workspace-hack" } diff --git a/parquet_to_line_protocol/Cargo.toml b/parquet_to_line_protocol/Cargo.toml index bf21d06a70..3761ad362b 100644 --- a/parquet_to_line_protocol/Cargo.toml +++ b/parquet_to_line_protocol/Cargo.toml @@ -14,7 +14,7 @@ num_cpus = "1.15.0" object_store = { version = "0.5.4" } parquet_file = { path = "../parquet_file" } schema = { path = "../schema" } -tokio = "1.25" +tokio = "1.26" snafu = "0.7" workspace-hack = { version = "0.1", path = "../workspace-hack" } diff --git a/querier/Cargo.toml b/querier/Cargo.toml index f3693581e8..bc97d76ae3 100644 --- a/querier/Cargo.toml +++ b/querier/Cargo.toml @@ -39,7 +39,7 @@ schema = { path = "../schema" } sharder = { path = "../sharder" } snafu = "0.7" thiserror = "1.0" -tokio = { version = "1.25", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] } +tokio = { version = "1.26", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] } tokio-util = { version = "0.7.7" } tonic = { version = "0.8" } trace = { path = "../trace" } diff --git a/query_functions/Cargo.toml b/query_functions/Cargo.toml index e3bc5359de..b3c47b1601 100644 --- a/query_functions/Cargo.toml +++ b/query_functions/Cargo.toml @@ -19,5 +19,5 @@ snafu = "0.7" workspace-hack = { version = "0.1", path = "../workspace-hack" } [dev-dependencies] -tokio = { version = "1.25", features = ["macros", "parking_lot"] } +tokio = { version = "1.26", features = ["macros", "parking_lot"] } datafusion_util = { path = "../datafusion_util" } diff --git a/service_grpc_flight/Cargo.toml b/service_grpc_flight/Cargo.toml index ef5c644d81..c5a1c6c67e 100644 --- a/service_grpc_flight/Cargo.toml +++ b/service_grpc_flight/Cargo.toml @@ -28,7 +28,7 @@ prost = "0.11" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0.93" snafu = "0.7" -tokio = { version = "1.25", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] } +tokio = { version = "1.26", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] } tonic = "0.8" workspace-hack = { version = "0.1", path = "../workspace-hack" } diff --git a/service_grpc_influxrpc/Cargo.toml b/service_grpc_influxrpc/Cargo.toml index a93e5ce34a..269941ea88 100644 --- a/service_grpc_influxrpc/Cargo.toml +++ b/service_grpc_influxrpc/Cargo.toml @@ -31,7 +31,7 @@ regex = "1.7.1" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0.93" snafu = "0.7" -tokio = { version = "1.25", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] } +tokio = { version = "1.26", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] } tokio-stream = { version = "0.1", features = ["net"] } tonic = "0.8" workspace-hack = { version = "0.1", path = "../workspace-hack" } diff --git a/sqlx-hotswap-pool/Cargo.toml b/sqlx-hotswap-pool/Cargo.toml index 1a374fb03d..e48496b438 100644 --- a/sqlx-hotswap-pool/Cargo.toml +++ b/sqlx-hotswap-pool/Cargo.toml @@ -12,7 +12,7 @@ publish = false [dependencies] sqlx = { version = "0.6.1", features = ["runtime-tokio-rustls", "postgres", "json", "tls"] } either = "1.8.1" -tokio = { version = "1.25", features = ["rt-multi-thread", "macros", "parking_lot"] } +tokio = { version = "1.26", features = ["rt-multi-thread", "macros", "parking_lot"] } futures = "0.3" workspace-hack = { version = "0.1", path = "../workspace-hack" } diff --git a/test_helpers/Cargo.toml b/test_helpers/Cargo.toml index d3c346bb59..844b8bde86 100644 --- a/test_helpers/Cargo.toml +++ b/test_helpers/Cargo.toml @@ -14,7 +14,7 @@ tracing-subscriber = { version = "0.3", features = ["env-filter"] } observability_deps = { path = "../observability_deps" } workspace-hack = { version = "0.1", path = "../workspace-hack" } async-trait = { version = "0.1.64", optional = true } -tokio = { version = "1.25.0", optional = true, default_features = false, features = ["time"] } +tokio = { version = "1.26.0", optional = true, default_features = false, features = ["time"] } [features] default = [] diff --git a/test_helpers_end_to_end/Cargo.toml b/test_helpers_end_to_end/Cargo.toml index ce37ecf357..b1200f8cf9 100644 --- a/test_helpers_end_to_end/Cargo.toml +++ b/test_helpers_end_to_end/Cargo.toml @@ -31,7 +31,7 @@ snafu = "0.7" sqlx = { version = "0.6", features = [ "runtime-tokio-rustls" , "postgres", "uuid" ] } tempfile = "3.4.0" test_helpers = { path = "../test_helpers", features = ["future_timeout"] } -tokio = { version = "1.25", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] } +tokio = { version = "1.26", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] } tokio-util = "0.7" tonic = "0.8" workspace-hack = { version = "0.1", path = "../workspace-hack" } diff --git a/trace_exporters/Cargo.toml b/trace_exporters/Cargo.toml index bbd9c0be61..2ea0fb3234 100644 --- a/trace_exporters/Cargo.toml +++ b/trace_exporters/Cargo.toml @@ -15,7 +15,7 @@ iox_time = { path = "../iox_time" } observability_deps = { path = "../observability_deps" } snafu = "0.7" thrift = { version = "0.17.0" } -tokio = { version = "1.25", features = ["macros", "parking_lot", "rt", "sync"] } +tokio = { version = "1.26", features = ["macros", "parking_lot", "rt", "sync"] } trace = { path = "../trace" } workspace-hack = { version = "0.1", path = "../workspace-hack" } diff --git a/tracker/Cargo.toml b/tracker/Cargo.toml index 711310d119..aab02e2b0c 100644 --- a/tracker/Cargo.toml +++ b/tracker/Cargo.toml @@ -15,11 +15,11 @@ observability_deps = { path = "../observability_deps" } parking_lot = "0.12" pin-project = "1.0" iox_time = { path = "../iox_time" } -tokio = { version = "1.25", features = ["macros", "parking_lot", "sync", "time"] } +tokio = { version = "1.26", features = ["macros", "parking_lot", "sync", "time"] } tokio-util = { version = "0.7.7" } trace = { path = "../trace"} workspace-hack = { version = "0.1", path = "../workspace-hack" } [dev-dependencies] # Need the multi-threaded executor for testing -tokio = { version = "1.25", features = ["macros", "parking_lot", "rt-multi-thread", "time"] } +tokio = { version = "1.26", features = ["macros", "parking_lot", "rt-multi-thread", "time"] } diff --git a/wal/Cargo.toml b/wal/Cargo.toml index ef9fa48219..9f83e8d464 100644 --- a/wal/Cargo.toml +++ b/wal/Cargo.toml @@ -21,7 +21,7 @@ regex = "1.7.1" serde = { version = "1.0", features = ["derive"] } snafu = "0.7" snap = "1.0.0" -tokio = { version = "1.25", features = ["macros", "fs", "io-util", "parking_lot", "rt-multi-thread", "sync", "time"] } +tokio = { version = "1.26", features = ["macros", "fs", "io-util", "parking_lot", "rt-multi-thread", "sync", "time"] } tokio-util = "0.7" workspace-hack = { version = "0.1", path = "../workspace-hack" } diff --git a/workspace-hack/Cargo.toml b/workspace-hack/Cargo.toml index 99173024d0..9e7c09d91a 100644 --- a/workspace-hack/Cargo.toml +++ b/workspace-hack/Cargo.toml @@ -183,14 +183,14 @@ rustix = { version = "0.36", features = ["fs", "termios"] } once_cell = { version = "1", default-features = false, features = ["unstable"] } scopeguard = { version = "1" } winapi = { version = "0.3", default-features = false, features = ["activation", "basetsd", "combaseapi", "consoleapi", "errhandlingapi", "fileapi", "handleapi", "impl-debug", "impl-default", "knownfolders", "minwinbase", "minwindef", "ntsecapi", "ntstatus", "objbase", "processenv", "roapi", "shellapi", "shlobj", "std", "stringapiset", "synchapi", "timezoneapi", "winbase", "wincon", "winerror", "winnt", "winreg", "winstring", "winuser", "ws2ipdef", "ws2tcpip", "wtypesbase"] } -windows-sys-53888c27b7ba5cf4 = { package = "windows-sys", version = "0.45", features = ["Win32_Foundation", "Win32_Networking_WinSock", "Win32_Security", "Win32_Storage_FileSystem", "Win32_System_Console", "Win32_System_IO", "Win32_System_LibraryLoader", "Win32_System_SystemServices", "Win32_System_Threading", "Win32_System_WindowsProgramming"] } -windows-sys-b32c9ddb6d93a9d2 = { package = "windows-sys", version = "0.42", features = ["Win32_Foundation", "Win32_Networking_WinSock", "Win32_Security", "Win32_Storage_FileSystem", "Win32_System_Console", "Win32_System_IO", "Win32_System_Pipes", "Win32_System_SystemServices", "Win32_System_Threading", "Win32_System_WindowsProgramming", "Win32_UI_Input_KeyboardAndMouse"] } +windows-sys-53888c27b7ba5cf4 = { package = "windows-sys", version = "0.45", features = ["Win32_Foundation", "Win32_Networking_WinSock", "Win32_Security", "Win32_Storage_FileSystem", "Win32_System_Console", "Win32_System_IO", "Win32_System_LibraryLoader", "Win32_System_Pipes", "Win32_System_SystemServices", "Win32_System_Threading", "Win32_System_WindowsProgramming"] } +windows-sys-b32c9ddb6d93a9d2 = { package = "windows-sys", version = "0.42", features = ["Win32_Foundation", "Win32_Networking_WinSock", "Win32_Security", "Win32_Storage_FileSystem", "Win32_System_Console", "Win32_System_IO", "Win32_System_Pipes", "Win32_System_WindowsProgramming", "Win32_UI_Input_KeyboardAndMouse"] } [target.x86_64-pc-windows-msvc.build-dependencies] once_cell = { version = "1", default-features = false, features = ["unstable"] } scopeguard = { version = "1" } winapi = { version = "0.3", default-features = false, features = ["activation", "basetsd", "combaseapi", "consoleapi", "errhandlingapi", "fileapi", "handleapi", "impl-debug", "impl-default", "knownfolders", "minwinbase", "minwindef", "ntsecapi", "ntstatus", "objbase", "processenv", "roapi", "shellapi", "shlobj", "std", "stringapiset", "synchapi", "timezoneapi", "winbase", "wincon", "winerror", "winnt", "winreg", "winstring", "winuser", "ws2ipdef", "ws2tcpip", "wtypesbase"] } -windows-sys-53888c27b7ba5cf4 = { package = "windows-sys", version = "0.45", features = ["Win32_Foundation", "Win32_Networking_WinSock", "Win32_Security", "Win32_Storage_FileSystem", "Win32_System_Console", "Win32_System_IO", "Win32_System_LibraryLoader", "Win32_System_SystemServices", "Win32_System_Threading", "Win32_System_WindowsProgramming"] } -windows-sys-b32c9ddb6d93a9d2 = { package = "windows-sys", version = "0.42", features = ["Win32_Foundation", "Win32_Networking_WinSock", "Win32_Security", "Win32_Storage_FileSystem", "Win32_System_Console", "Win32_System_IO", "Win32_System_Pipes", "Win32_System_SystemServices", "Win32_System_Threading", "Win32_System_WindowsProgramming", "Win32_UI_Input_KeyboardAndMouse"] } +windows-sys-53888c27b7ba5cf4 = { package = "windows-sys", version = "0.45", features = ["Win32_Foundation", "Win32_Networking_WinSock", "Win32_Security", "Win32_Storage_FileSystem", "Win32_System_Console", "Win32_System_IO", "Win32_System_LibraryLoader", "Win32_System_Pipes", "Win32_System_SystemServices", "Win32_System_Threading", "Win32_System_WindowsProgramming"] } +windows-sys-b32c9ddb6d93a9d2 = { package = "windows-sys", version = "0.42", features = ["Win32_Foundation", "Win32_Networking_WinSock", "Win32_Security", "Win32_Storage_FileSystem", "Win32_System_Console", "Win32_System_IO", "Win32_System_Pipes", "Win32_System_WindowsProgramming", "Win32_UI_Input_KeyboardAndMouse"] } ### END HAKARI SECTION diff --git a/write_buffer/Cargo.toml b/write_buffer/Cargo.toml index fe24e979d3..8c413eed8d 100644 --- a/write_buffer/Cargo.toml +++ b/write_buffer/Cargo.toml @@ -26,7 +26,7 @@ pin-project = "1.0" prost = "0.11" rskafka = { git = "https://github.com/influxdata/rskafka.git", rev="abb2a28cff5ce39d186e814a0c5012267b9690a4", default-features = false, features = ["compression-zstd", "transport-socks5"] } schema = { path = "../schema" } -tokio = { version = "1.25", features = ["fs", "macros", "parking_lot", "rt", "sync", "time"] } +tokio = { version = "1.26", features = ["fs", "macros", "parking_lot", "rt", "sync", "time"] } tokio-util = "0.7.7" trace = { path = "../trace" } trace_http = { path = "../trace_http" }