chore(deps): Bump tokio from 1.24.2 to 1.25.0

Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.24.2 to 1.25.0.
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](https://github.com/tokio-rs/tokio/commits/tokio-1.25.0)

---
updated-dependencies:
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
pull/24376/head
dependabot[bot] 2023-01-30 01:57:27 +00:00 committed by GitHub
parent 55257b46c9
commit ed7d02a225
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
37 changed files with 40 additions and 40 deletions
backoff
cache_system
client_util
compactor
datafusion_util
executor
flightsql
influxdb2_client
influxdb_iox
influxdb_iox_client
ingester
ingester2
iox_catalog
iox_data_generator
iox_query
iox_time
ioxd_common
ioxd_ingester2
ioxd_querier
ioxd_router
object_store_metrics
parquet_file
parquet_to_line_protocol
querier
query_functions
query_tests
service_grpc_flight
service_grpc_influxrpc
sqlx-hotswap-pool
test_helpers
test_helpers_end_to_end
trace_exporters
tracker
write_buffer

4
Cargo.lock generated
View File

@ -5896,9 +5896,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
[[package]]
name = "tokio"
version = "1.24.2"
version = "1.25.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "597a12a59981d9e3c38d216785b0c37399f6e415e8d0712047620f189371b0bb"
checksum = "c8e00990ebabbe4c14c08aca901caed183ecd5c09562a12c824bb53d3c3fd3af"
dependencies = [
"autocfg",
"bytes",

View File

@ -6,7 +6,7 @@ edition.workspace = true
license.workspace = true
[dependencies]
tokio = { version = "1.24", features = ["macros", "time"] }
tokio = { version = "1.25", features = ["macros", "time"] }
observability_deps = { path = "../observability_deps" }
rand = "0.8"
snafu = "0.7"

View File

@ -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.24", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
tokio = { version = "1.25", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
tokio-util = { version = "0.7.4" }
trace = { path = "../trace"}
workspace-hack = { path = "../workspace-hack"}

View File

@ -15,5 +15,5 @@ tower = "0.4"
workspace-hack = { path = "../workspace-hack"}
[dev-dependencies]
tokio = { version = "1.24", features = ["macros", "parking_lot", "rt-multi-thread"] }
tokio = { version = "1.25", features = ["macros", "parking_lot", "rt-multi-thread"] }
mockito = "0.31"

View File

@ -26,7 +26,7 @@ schema = { path = "../schema" }
service_grpc_catalog = { path = "../service_grpc_catalog"}
snafu = "0.7"
thiserror = "1.0"
tokio = { version = "1.24", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
tokio = { version = "1.25", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
tokio-util = { version = "0.7.4" }
tonic = { version = "0.8" }
uuid = { version = "1", features = ["v4"] }

View File

@ -12,7 +12,7 @@ datafusion = { workspace = true }
futures = "0.3"
observability_deps = { path = "../observability_deps" }
pin-project = "1.0"
tokio = { version = "1.24", features = ["parking_lot", "sync"] }
tokio = { version = "1.25", features = ["parking_lot", "sync"] }
tokio-stream = "0.1"
workspace-hack = { path = "../workspace-hack"}

View File

@ -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.24" }
tokio = { version = "1.25" }
tokio-util = { version = "0.7.4" }
workspace-hack = { path = "../workspace-hack"}

View File

@ -17,6 +17,6 @@ bytes = "1.3"
futures = "0.3"
snafu = "0.7"
prost = "0.11"
tokio = { version = "1.22", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] }
tokio = { version = "1.25", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] }
tonic = "0.8"
workspace-hack = { path = "../workspace-hack"}

View File

@ -19,7 +19,7 @@ schema = { path = "../schema" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.91"
thiserror = "1.0.38"
tokio = { version = "1.24" }
tokio = { version = "1.25" }
tonic = { version = "0.8" }
trogging = { path = "../trogging", features = ["clap"] }
workspace-hack = { path = "../workspace-hack"}

View File

@ -19,5 +19,5 @@ uuid = { version = "1", features = ["v4"] }
mockito = "0.31"
once_cell = { version = "1.17", features = ["parking_lot"] }
parking_lot = "0.12"
tokio = { version = "1.24", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
tokio = { version = "1.25", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
test_helpers = { path = "../test_helpers" }

View File

@ -68,7 +68,7 @@ serde_json = "1.0.91"
snafu = "0.7"
thiserror = "1.0.38"
tikv-jemalloc-ctl = { version = "0.5.0", optional = true }
tokio = { version = "1.24", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] }
tokio = { version = "1.25", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] }
tokio-stream = { version = "0.1", features = ["net"] }
tokio-util = { version = "0.7.4", features = ["compat"] }
tonic = "0.8"

View File

@ -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.24", features = ["macros", "parking_lot", "rt-multi-thread"] }
tokio = { version = "1.25", features = ["macros", "parking_lot", "rt-multi-thread"] }
tokio-stream = "0.1.11"
thiserror = "1.0.38"
tonic = { version = "0.8" }

View File

@ -41,7 +41,7 @@ schema = { path = "../schema" }
service_grpc_catalog = { path = "../service_grpc_catalog"}
snafu = "0.7"
thiserror = "1.0"
tokio = { version = "1.24", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
tokio = { version = "1.25", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
tokio-util = { version = "0.7.4" }
tonic = { version = "0.8" }
trace = { path = "../trace" }

View File

@ -42,7 +42,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.24", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
tokio = { version = "1.25", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
tonic = "0.8.3"
trace = { version = "0.1.0", path = "../trace" }
uuid = "1.2.2"

View File

@ -18,7 +18,7 @@ snafu = "0.7"
sqlx = { version = "0.6", features = [ "runtime-tokio-rustls" , "postgres", "uuid" ] }
sqlx-hotswap-pool = { path = "../sqlx-hotswap-pool" }
thiserror = "1.0.38"
tokio = { version = "1.24", features = ["io-util", "macros", "parking_lot", "rt-multi-thread", "time"] }
tokio = { version = "1.25", features = ["io-util", "macros", "parking_lot", "rt-multi-thread", "time"] }
uuid = { version = "1", features = ["v4"] }
workspace-hack = { path = "../workspace-hack"}

View File

@ -26,7 +26,7 @@ schema = { path = "../schema" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.91"
snafu = "0.7"
tokio = { version = "1.24", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
tokio = { version = "1.25", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
toml = "0.7.0"
tracing = "0.1"
tracing-subscriber = "0.3"

View File

@ -36,7 +36,7 @@ query_functions = { path = "../query_functions"}
regex = "1"
schema = { path = "../schema" }
snafu = "0.7"
tokio = { version = "1.24", features = ["macros", "parking_lot"] }
tokio = { version = "1.25", features = ["macros", "parking_lot"] }
tokio-stream = "0.1"
trace = { path = "../trace" }
predicate = { path = "../predicate" }

View File

@ -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.24", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
tokio = { version = "1.25", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
workspace-hack = { path = "../workspace-hack"}
[dev-dependencies]

View File

@ -42,7 +42,7 @@ serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.91"
serde_urlencoded = "0.7.0"
snafu = "0.7"
tokio = { version = "1.24", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] }
tokio = { version = "1.25", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] }
tokio-stream = { version = "0.1", features = ["net"] }
tokio-util = { version = "0.7.4" }
tonic = "0.8"

View File

@ -17,7 +17,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.24", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] }
tokio = { version = "1.25", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] }
tokio-util = { version = "0.7.4" }
trace = { path = "../trace" }
workspace-hack = { path = "../workspace-hack"}

View File

@ -28,7 +28,7 @@ arrow-flight = { workspace = true }
async-trait = "0.1"
hyper = "0.14"
thiserror = "1.0.38"
tokio = { version = "1.24", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] }
tokio = { version = "1.25", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] }
tonic = "0.8"
workspace-hack = { path = "../workspace-hack"}
parquet_file = { version = "0.1.0", path = "../parquet_file" }

View File

@ -26,6 +26,6 @@ async-trait = "0.1"
hashbrown = { workspace = true }
hyper = "0.14"
thiserror = "1.0.38"
tokio = { version = "1.24", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] }
tokio = { version = "1.25", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] }
tokio-util = { version = "0.7.4" }
workspace-hack = { path = "../workspace-hack"}

View File

@ -13,10 +13,10 @@ iox_time = { version = "0.1.0", path = "../iox_time" }
metric = { version = "0.1.0", path = "../metric" }
object_store = "0.5.2"
pin-project = "1.0.12"
tokio = { version = "1.24", features = ["io-util"] }
tokio = { version = "1.25", features = ["io-util"] }
workspace-hack = { path = "../workspace-hack" }
[dev-dependencies] # In alphabetical order
dotenvy = "0.15.6"
snafu = "0.7"
tokio = { version = "1.24", features = ["macros", "io-util"] }
tokio = { version = "1.25", features = ["macros", "io-util"] }

View File

@ -26,7 +26,7 @@ schema = { path = "../schema" }
snafu = "0.7"
thiserror = "1.0.38"
thrift = "0.17"
tokio = { version = "1.24", features = ["macros", "parking_lot", "rt", "rt-multi-thread", "sync"] }
tokio = { version = "1.25", features = ["macros", "parking_lot", "rt", "rt-multi-thread", "sync"] }
uuid = { version = "1", features = ["v4"] }
zstd = "0.12"
workspace-hack = { path = "../workspace-hack"}

View File

@ -14,7 +14,7 @@ num_cpus = "1.15.0"
object_store = { version = "0.5.2" }
parquet_file = { path = "../parquet_file" }
schema = { path = "../schema" }
tokio = "1.24"
tokio = "1.25"
snafu = "0.7"
workspace-hack = { path = "../workspace-hack"}

View File

@ -39,7 +39,7 @@ schema = { path = "../schema" }
sharder = { path = "../sharder" }
snafu = "0.7"
thiserror = "1.0"
tokio = { version = "1.24", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
tokio = { version = "1.25", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
tokio-util = { version = "0.7.4" }
tonic = { version = "0.8" }
trace = { path = "../trace" }

View File

@ -19,5 +19,5 @@ snafu = "0.7"
workspace-hack = { path = "../workspace-hack"}
[dev-dependencies]
tokio = { version = "1.24", features = ["macros", "parking_lot"] }
tokio = { version = "1.25", features = ["macros", "parking_lot"] }
datafusion_util = { path = "../datafusion_util" }

View File

@ -36,7 +36,7 @@ querier = { path = "../querier" }
regex = "1.7.1"
schema = { path = "../schema" }
sharder = { path = "../sharder" }
tokio = { version = "1.24", features = ["macros", "parking_lot", "rt-multi-thread", "time"] }
tokio = { version = "1.25", features = ["macros", "parking_lot", "rt-multi-thread", "time"] }
trace = { path = "../trace" }
uuid = "1"
workspace-hack = { path = "../workspace-hack"}

View File

@ -28,7 +28,7 @@ prost = "0.11"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.91"
snafu = "0.7"
tokio = { version = "1.24", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] }
tokio = { version = "1.25", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] }
tonic = "0.8"
workspace-hack = { path = "../workspace-hack"}

View File

@ -31,7 +31,7 @@ regex = "1.7.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.91"
snafu = "0.7"
tokio = { version = "1.24", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] }
tokio = { version = "1.25", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] }
tokio-stream = { version = "0.1", features = ["net"] }
tonic = "0.8"
workspace-hack = { path = "../workspace-hack"}

View File

@ -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.24", features = ["rt-multi-thread", "macros", "parking_lot"] }
tokio = { version = "1.25", features = ["rt-multi-thread", "macros", "parking_lot"] }
futures = "0.3"
workspace-hack = { path = "../workspace-hack"}

View File

@ -14,7 +14,7 @@ tracing-subscriber = { version = "0.3", features = ["env-filter"] }
observability_deps = { path = "../observability_deps" }
workspace-hack = { path = "../workspace-hack"}
async-trait = { version = "0.1.63", optional = true }
tokio = { version = "1.24.2", optional = true, default_features = false, features = ["time"] }
tokio = { version = "1.25.0", optional = true, default_features = false, features = ["time"] }
[features]
default = []

View File

@ -29,7 +29,7 @@ snafu = "0.7"
sqlx = { version = "0.6", features = [ "runtime-tokio-rustls" , "postgres", "uuid" ] }
tempfile = "3.1.0"
test_helpers = { path = "../test_helpers", features = ["future_timeout"] }
tokio = { version = "1.24", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] }
tokio = { version = "1.25", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] }
tokio-util = "0.7"
tonic = "0.8"
uuid = "1"

View File

@ -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.24", features = ["macros", "parking_lot", "rt", "sync"] }
tokio = { version = "1.25", features = ["macros", "parking_lot", "rt", "sync"] }
trace = { path = "../trace" }
workspace-hack = { path = "../workspace-hack"}

View File

@ -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.24", features = ["macros", "parking_lot", "sync", "time"] }
tokio = { version = "1.25", features = ["macros", "parking_lot", "sync", "time"] }
tokio-util = { version = "0.7.4" }
trace = { path = "../trace"}
workspace-hack = { path = "../workspace-hack"}
[dev-dependencies]
# Need the multi-threaded executor for testing
tokio = { version = "1.24", features = ["macros", "parking_lot", "rt-multi-thread", "time"] }
tokio = { version = "1.25", features = ["macros", "parking_lot", "rt-multi-thread", "time"] }

View File

@ -21,7 +21,7 @@ regex = "1.7.1"
serde = { version = "1.0", features = ["derive"] }
snafu = "0.7"
snap = "1.0.0"
tokio = { version = "1.24", features = ["macros", "fs", "io-util", "parking_lot", "rt-multi-thread", "sync", "time"] }
tokio = { version = "1.25", features = ["macros", "fs", "io-util", "parking_lot", "rt-multi-thread", "sync", "time"] }
tokio-util = "0.7"
workspace-hack = { path = "../workspace-hack" }

View File

@ -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.24", features = ["fs", "macros", "parking_lot", "rt", "sync", "time"] }
tokio = { version = "1.25", features = ["fs", "macros", "parking_lot", "rt", "sync", "time"] }
tokio-util = "0.7.4"
trace = { path = "../trace" }
trace_http = { path = "../trace_http" }