chore(deps): Bump tokio from 1.26.0 to 1.27.0 (#7373)

Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.26.0 to 1.27.0.
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.26.0...tokio-1.27.0)

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

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
pull/24376/head
dependabot[bot] 2023-03-30 09:36:04 +00:00 committed by GitHub
parent 008270b346
commit 9cbcdc7672
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
37 changed files with 44 additions and 45 deletions

11
Cargo.lock generated
View File

@ -5979,14 +5979,13 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
[[package]]
name = "tokio"
version = "1.26.0"
version = "1.27.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "03201d01c3c27a29c8a5cee5b55a93ddae1ccf6f08f65365c2c918f8c1b76f64"
checksum = "d0de47a4eecbe11f498978a9b29d792f0d2692d1dd003650c24c76510e3bc001"
dependencies = [
"autocfg",
"bytes",
"libc",
"memchr",
"mio",
"num_cpus",
"parking_lot 0.12.1",
@ -6010,13 +6009,13 @@ dependencies = [
[[package]]
name = "tokio-macros"
version = "1.8.2"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d266c00fde287f55d3f1c3e96c500c362a2b8c695076ec180f27918820bc6df8"
checksum = "61a573bdc87985e9d6ddeed1b3d864e8a302c847e40d647746df2f1de209d1ce"
dependencies = [
"proc-macro2",
"quote",
"syn 1.0.109",
"syn 2.0.11",
]
[[package]]

View File

@ -6,7 +6,7 @@ edition.workspace = true
license.workspace = true
[dependencies]
tokio = { version = "1.26", features = ["macros", "time"] }
tokio = { version = "1.27", 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.26", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
tokio = { version = "1.27", 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" }

View File

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

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.26", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
tokio = { version = "1.27", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
tokio-util = { version = "0.7.7" }
tonic = { version = "0.8" }
uuid = { version = "1", features = ["v4"] }

View File

@ -13,7 +13,7 @@ futures = "0.3"
object_store = "0.5.5"
observability_deps = { path = "../observability_deps" }
pin-project = "1.0"
tokio = { version = "1.26", features = ["parking_lot", "sync"] }
tokio = { version = "1.27", features = ["parking_lot", "sync"] }
tokio-stream = "0.1"
url = "2.2"
workspace-hack = { version = "0.1", 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.26" }
tokio = { version = "1.27" }
tokio-util = { version = "0.7.7" }
workspace-hack = { version = "0.1", path = "../workspace-hack" }

View File

@ -19,6 +19,6 @@ futures = "0.3"
snafu = "0.7"
once_cell = { version = "1", default-features = false }
prost = "0.11"
tokio = { version = "1.26", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] }
tokio = { version = "1.27", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] }
tonic = "0.8"
workspace-hack = { version = "0.1", path = "../workspace-hack" }

View File

@ -19,7 +19,7 @@ schema = { path = "../schema" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.95"
thiserror = "1.0.39"
tokio = { version = "1.26" }
tokio = { version = "1.27" }
tonic = { version = "0.8" }
trogging = { path = "../trogging", features = ["clap"] }
workspace-hack = { version = "0.1", path = "../workspace-hack" }

View File

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

View File

@ -72,7 +72,7 @@ snafu = "0.7"
tempfile = "3.4.0"
thiserror = "1.0.39"
tikv-jemalloc-ctl = { version = "0.5.0", optional = true }
tokio = { version = "1.26", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time", "io-std"] }
tokio = { version = "1.27", 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"

View File

@ -25,7 +25,7 @@ rand = "0.8.3"
reqwest = { version = "0.11", default-features = false, features = ["stream", "rustls-tls"] }
schema = { path = "../schema" }
serde_json = "1.0.95"
tokio = { version = "1.26", features = ["macros", "parking_lot", "rt-multi-thread"] }
tokio = { version = "1.27", features = ["macros", "parking_lot", "rt-multi-thread"] }
tokio-stream = "0.1.12"
thiserror = "1.0.39"
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.26", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
tokio = { version = "1.27", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
tokio-util = { version = "0.7.7" }
tonic = { version = "0.8" }
trace = { path = "../trace" }

View File

@ -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.39"
test_helpers = { path = "../test_helpers", features = ["future_timeout"], optional = true }
tokio = { version = "1.26", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
tokio = { version = "1.27", 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.12"
tempfile = "3.4.0"
test_helpers = { path = "../test_helpers", features = ["future_timeout"] }
tokio = { version = "1.26", features = ["macros", "time", "test-util"] }
tokio = { version = "1.27", features = ["macros", "time", "test-util"] }
[features]
benches = ["test_helpers"] # Export some internal types for benchmark purposes only.

View File

@ -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.39"
tokio = { version = "1.26", features = ["io-util", "macros", "parking_lot", "rt-multi-thread", "time"] }
tokio = { version = "1.27", features = ["io-util", "macros", "parking_lot", "rt-multi-thread", "time"] }
uuid = { version = "1", features = ["v4"] }
workspace-hack = { version = "0.1", path = "../workspace-hack" }

View File

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

View File

@ -34,7 +34,7 @@ parquet_file = { path = "../parquet_file" }
query_functions = { path = "../query_functions"}
schema = { path = "../schema" }
snafu = "0.7"
tokio = { version = "1.26", features = ["macros", "parking_lot"] }
tokio = { version = "1.27", features = ["macros", "parking_lot"] }
tokio-stream = "0.1"
trace = { path = "../trace" }
predicate = { path = "../predicate" }

View File

@ -23,4 +23,4 @@ workspace-hack = { version = "0.1", path = "../workspace-hack" }
[dev-dependencies] # In alphabetical order
test_helpers = { path = "../test_helpers" }
insta = { version = "1", features = ["yaml"] }
tokio = { version = "1.26", features = ["macros", "parking_lot"] }
tokio = { version = "1.27", features = ["macros", "parking_lot"] }

View File

@ -9,7 +9,7 @@ license.workspace = true
[dependencies]
chrono = { version = "0.4.24", default-features = false, features = ["clock", "std"] }
parking_lot = "0.12"
tokio = { version = "1.26", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
tokio = { version = "1.27", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
workspace-hack = { version = "0.1", path = "../workspace-hack" }
[dev-dependencies]

View File

@ -43,7 +43,7 @@ serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.95"
serde_urlencoded = "0.7.0"
snafu = "0.7"
tokio = { version = "1.26", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] }
tokio = { version = "1.27", 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"

View File

@ -19,7 +19,7 @@ ioxd_common = { path = "../ioxd_common" }
metric = { path = "../metric" }
parquet_file = { version = "0.1.0", path = "../parquet_file" }
thiserror = "1.0.39"
tokio = { version = "1.26", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] }
tokio = { version = "1.27", 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" }

View File

@ -29,7 +29,7 @@ arrow-flight = { workspace = true }
async-trait = "0.1"
hyper = "0.14"
thiserror = "1.0.39"
tokio = { version = "1.26", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] }
tokio = { version = "1.27", 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" }

View File

@ -27,6 +27,6 @@ async-trait = "0.1"
hashbrown = { workspace = true }
hyper = "0.14"
thiserror = "1.0.39"
tokio = { version = "1.26", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] }
tokio = { version = "1.27", 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" }

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.5"
pin-project = "1.0.12"
tokio = { version = "1.26", features = ["io-util"] }
tokio = { version = "1.27", features = ["io-util"] }
workspace-hack = { version = "0.1", path = "../workspace-hack" }
[dev-dependencies] # In alphabetical order
dotenvy = "0.15.7"
snafu = "0.7"
tokio = { version = "1.26", features = ["macros", "io-util"] }
tokio = { version = "1.27", features = ["macros", "io-util"] }

View File

@ -26,7 +26,7 @@ schema = { path = "../schema" }
snafu = "0.7"
thiserror = "1.0.39"
thrift = "0.17"
tokio = { version = "1.26", features = ["macros", "parking_lot", "rt", "rt-multi-thread", "sync"] }
tokio = { version = "1.27", 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" }

View File

@ -14,7 +14,7 @@ num_cpus = "1.15.0"
object_store = { version = "0.5.5" }
parquet_file = { path = "../parquet_file" }
schema = { path = "../schema" }
tokio = "1.26"
tokio = "1.27"
snafu = "0.7"
workspace-hack = { version = "0.1", path = "../workspace-hack" }

View File

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

View File

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

View File

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

View File

@ -31,7 +31,7 @@ regex = "1.7.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.95"
snafu = "0.7"
tokio = { version = "1.26", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] }
tokio = { version = "1.27", 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" }

View File

@ -12,7 +12,7 @@ publish = false
[dependencies]
sqlx = { version = "0.6.3", features = ["runtime-tokio-rustls", "postgres", "json", "tls"] }
either = "1.8.1"
tokio = { version = "1.26", features = ["rt-multi-thread", "macros", "parking_lot"] }
tokio = { version = "1.27", features = ["rt-multi-thread", "macros", "parking_lot"] }
futures = "0.3"
workspace-hack = { version = "0.1", path = "../workspace-hack" }

View File

@ -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.66", optional = true }
tokio = { version = "1.26.0", optional = true, default_features = false, features = ["time"] }
tokio = { version = "1.27.0", optional = true, default_features = false, features = ["time"] }
[features]
default = []

View File

@ -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.26", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] }
tokio = { version = "1.27", 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" }

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.26", features = ["macros", "parking_lot", "rt", "sync"] }
tokio = { version = "1.27", features = ["macros", "parking_lot", "rt", "sync"] }
trace = { path = "../trace" }
workspace-hack = { version = "0.1", 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.26", features = ["macros", "parking_lot", "sync", "time"] }
tokio = { version = "1.27", 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.26", features = ["macros", "parking_lot", "rt-multi-thread", "time"] }
tokio = { version = "1.27", features = ["macros", "parking_lot", "rt-multi-thread", "time"] }

View File

@ -21,7 +21,7 @@ regex = "1.7.3"
serde = { version = "1.0", features = ["derive"] }
snafu = "0.7"
snap = "1.0.0"
tokio = { version = "1.26", features = ["macros", "fs", "io-util", "parking_lot", "rt-multi-thread", "sync", "time"] }
tokio = { version = "1.27", features = ["macros", "fs", "io-util", "parking_lot", "rt-multi-thread", "sync", "time"] }
tokio-util = "0.7"
workspace-hack = { version = "0.1", 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.26", features = ["fs", "macros", "parking_lot", "rt", "sync", "time"] }
tokio = { version = "1.27", features = ["fs", "macros", "parking_lot", "rt", "sync", "time"] }
tokio-util = "0.7.7"
trace = { path = "../trace" }
trace_http = { path = "../trace_http" }