chore(deps): bump tokio from 1.10.1 to 1.11.0

Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.10.1 to 1.11.0.
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.10.1...tokio-1.11.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] 2021-09-06 09:11:38 +00:00 committed by GitHub
parent 0a0afa9485
commit b67610d9b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
19 changed files with 23 additions and 23 deletions

4
Cargo.lock generated
View File

@ -4662,9 +4662,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
[[package]] [[package]]
name = "tokio" name = "tokio"
version = "1.10.1" version = "1.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "92036be488bb6594459f2e03b60e42df6f937fe6ca5c5ffdcb539c6b84dc40f5" checksum = "b4efe6fc2395938c8155973d7be49fe8d03a843726e285e100a8a383cc0154ce"
dependencies = [ dependencies = [
"autocfg", "autocfg",
"bytes", "bytes",

View File

@ -145,7 +145,7 @@ snafu = "0.6.9"
structopt = "0.3.23" structopt = "0.3.23"
thiserror = "1.0.28" thiserror = "1.0.28"
tikv-jemalloc-ctl = { version = "0.4.0" } tikv-jemalloc-ctl = { version = "0.4.0" }
tokio = { version = "1.0", features = ["macros", "rt-multi-thread", "parking_lot", "signal"] } tokio = { version = "1.11", features = ["macros", "rt-multi-thread", "parking_lot", "signal"] }
tokio-stream = { version = "0.1.2", features = ["net"] } tokio-stream = { version = "0.1.2", features = ["net"] }
tokio-util = { version = "0.6.3" } tokio-util = { version = "0.6.3" }
tonic = "0.5.0" tonic = "0.5.0"

View File

@ -13,4 +13,4 @@ tonic = { version = "0.5.0" }
tower = "0.4" tower = "0.4"
[dev-dependencies] [dev-dependencies]
tokio = { version = "1.0", features = ["macros"] } tokio = { version = "1.11", features = ["macros"] }

View File

@ -13,7 +13,7 @@ paste = "1.0.5"
prost = "0.8" prost = "0.8"
prost-types = "0.8" prost-types = "0.8"
thiserror = "1.0.28" thiserror = "1.0.28"
tokio = { version = "1.0", features = ["macros", "rt-multi-thread", "parking_lot", "signal"] } tokio = { version = "1.11", features = ["macros", "rt-multi-thread", "parking_lot", "signal"] }
tokio-stream = { version = "0.1.2", features = ["net"] } tokio-stream = { version = "0.1.2", features = ["net"] }
tokio-util = { version = "0.6.3" } tokio-util = { version = "0.6.3" }
tonic = "0.5" tonic = "0.5"

View File

@ -17,5 +17,5 @@ url = "2.1.1"
mockito = "0.30" mockito = "0.30"
once_cell = { version = "1.4.0", features = ["parking_lot"] } once_cell = { version = "1.4.0", features = ["parking_lot"] }
parking_lot = "0.11.2" parking_lot = "0.11.2"
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] } tokio = { version = "1.11", features = ["macros", "rt-multi-thread"] }
test_helpers = { path = "../test_helpers" } test_helpers = { path = "../test_helpers" }

View File

@ -27,4 +27,4 @@ tonic = { version = "0.5.0" }
[dev-dependencies] # In alphabetical order [dev-dependencies] # In alphabetical order
serde_json = "1.0" serde_json = "1.0"
tokio = { version = "1.0", features = ["macros"] } tokio = { version = "1.11", features = ["macros"] }

View File

@ -13,9 +13,9 @@ indexmap = "1.6"
itertools = "0.10.1" itertools = "0.10.1"
observability_deps = { path = "../observability_deps" } observability_deps = { path = "../observability_deps" }
snafu = "0.6" snafu = "0.6"
tokio = { version = "1.0", features = ["sync"] } tokio = { version = "1.11", features = ["sync"] }
[dev-dependencies] [dev-dependencies]
arrow_util = { path = "../arrow_util" } arrow_util = { path = "../arrow_util" }
futures = "0.3" futures = "0.3"
tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread", "sync", "time"] } tokio = { version = "1.11", features = ["macros", "rt", "rt-multi-thread", "sync", "time"] }

View File

@ -23,7 +23,7 @@ rand_core = "0.6.2"
rand_seeder = "0.2.1" rand_seeder = "0.2.1"
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
snafu = "0.6.8" snafu = "0.6.8"
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] } tokio = { version = "1.11", features = ["macros", "rt-multi-thread"] }
toml = "0.5.6" toml = "0.5.6"
tracing = "0.1" tracing = "0.1"
tracing-futures = "0.2.4" tracing-futures = "0.2.4"

View File

@ -12,6 +12,6 @@ futures = "0.3"
object_store = { path = "../object_store" } object_store = { path = "../object_store" }
observability_deps = { path = "../observability_deps" } observability_deps = { path = "../observability_deps" }
snafu = "0.6" snafu = "0.6"
tokio = { version = "1.0", features = ["macros", "time"] } tokio = { version = "1.11", features = ["macros", "time"] }
tokio-stream = "0.1" tokio-stream = "0.1"
uuid = { version = "0.8", features = ["serde", "v4"] } uuid = { version = "0.8", features = ["serde", "v4"] }

View File

@ -12,7 +12,7 @@ futures = "0.3"
hashbrown = "0.11" hashbrown = "0.11"
internal_types = { path = "../internal_types" } internal_types = { path = "../internal_types" }
observability_deps = { path = "../observability_deps" } observability_deps = { path = "../observability_deps" }
tokio = { version = "1.0", features = ["macros", "time"] } tokio = { version = "1.11", features = ["macros", "time"] }
tracker = { path = "../tracker" } tracker = { path = "../tracker" }
[dev-dependencies] [dev-dependencies]

View File

@ -27,7 +27,7 @@ metrics = { path = "../metrics" }
observability_deps = { path = "../observability_deps" } observability_deps = { path = "../observability_deps" }
parking_lot = "0.11.2" parking_lot = "0.11.2"
snafu = "0.6.2" snafu = "0.6.2"
tokio = { version = "1.0", features = ["macros"] } tokio = { version = "1.11", features = ["macros"] }
[dev-dependencies] # In alphabetical order [dev-dependencies] # In alphabetical order
test_helpers = { path = "../test_helpers" } test_helpers = { path = "../test_helpers" }

View File

@ -22,7 +22,7 @@ rusoto_core = { version = "0.47.0", optional = true}
rusoto_credential = { version = "0.47.0", optional = true} rusoto_credential = { version = "0.47.0", optional = true}
rusoto_s3 = { version = "0.47.0", optional = true} rusoto_s3 = { version = "0.47.0", optional = true}
snafu = { version = "0.6.10", features = ["futures"] } snafu = { version = "0.6.10", features = ["futures"] }
tokio = { version = "1.0", features = ["macros", "fs"] } tokio = { version = "1.11", features = ["macros", "fs"] }
# Filesystem integration # Filesystem integration
tokio-util = { version = "0.6.3", features = [ "io" ] } tokio-util = { version = "0.6.3", features = [ "io" ] }
reqwest = "0.11" reqwest = "0.11"

View File

@ -29,7 +29,7 @@ metrics = { path = "../metrics" }
parking_lot = "0.11.2" parking_lot = "0.11.2"
regex = "1" regex = "1"
snafu = "0.6.3" snafu = "0.6.3"
tokio = { version = "1.0", features = ["macros"] } tokio = { version = "1.11", features = ["macros"] }
tokio-stream = "0.1.2" tokio-stream = "0.1.2"
trace = { path = "../trace" } trace = { path = "../trace" }
tracker = { path = "../tracker" } tracker = { path = "../tracker" }

View File

@ -25,4 +25,4 @@ object_store = { path = "../object_store" }
snafu = "0.6.3" snafu = "0.6.3"
tempfile = "3.1.0" tempfile = "3.1.0"
test_helpers = { path = "../test_helpers" } test_helpers = { path = "../test_helpers" }
tokio = { version = "1.0", features = ["macros", "time"] } tokio = { version = "1.11", features = ["macros", "time"] }

View File

@ -49,7 +49,7 @@ snafu = "0.6"
snap = "1.0.0" snap = "1.0.0"
tikv-jemalloc-ctl = "0.4.0" tikv-jemalloc-ctl = "0.4.0"
trace = { path = "../trace" } trace = { path = "../trace" }
tokio = { version = "1.0", features = ["macros", "time"] } tokio = { version = "1.11", features = ["macros", "time"] }
tokio-util = { version = "0.6.3" } tokio-util = { version = "0.6.3" }
tracker = { path = "../tracker" } tracker = { path = "../tracker" }
uuid = { version = "0.8", features = ["serde", "v4"] } uuid = { version = "0.8", features = ["serde", "v4"] }
@ -58,7 +58,7 @@ write_buffer = { path = "../write_buffer" }
[dev-dependencies] # In alphabetical order [dev-dependencies] # In alphabetical order
arrow_util = { path = "../arrow_util" } arrow_util = { path = "../arrow_util" }
datafusion = { path = "../datafusion" } datafusion = { path = "../datafusion" }
tokio = { version = "1.0", features = ["macros", "time"] } tokio = { version = "1.11", features = ["macros", "time"] }
test_helpers = { path = "../test_helpers" } test_helpers = { path = "../test_helpers" }
[features] [features]

View File

@ -28,7 +28,7 @@ query_tests = { path = "../query_tests" }
rand = "0.8.3" rand = "0.8.3"
server = { path = "../server" } server = { path = "../server" }
test_helpers = { path = "../test_helpers" } test_helpers = { path = "../test_helpers" }
tokio = { version = "1.0", features = ["macros", "time"] } tokio = { version = "1.11", features = ["macros", "time"] }
[[bench]] [[bench]]
name = "influxrpc" name = "influxrpc"

View File

@ -15,7 +15,7 @@ opentelemetry = { version = "0.16", features = ["rt-tokio"] }
opentelemetry-jaeger = { version = "0.15", optional = true, features = ["rt-tokio"] } opentelemetry-jaeger = { version = "0.15", optional = true, features = ["rt-tokio"] }
snafu = "0.6" snafu = "0.6"
structopt = { version = "0.3.23" } structopt = { version = "0.3.23" }
tokio = { version = "1.0", features = ["macros", "time", "sync", "rt"] } tokio = { version = "1.11", features = ["macros", "time", "sync", "rt"] }
tokio-util = { version = "0.6.3" } tokio-util = { version = "0.6.3" }
trace = { path = "../trace" } trace = { path = "../trace" }

View File

@ -14,9 +14,9 @@ metrics = { path = "../metrics" }
observability_deps = { path = "../observability_deps" } observability_deps = { path = "../observability_deps" }
parking_lot = "0.11.2" parking_lot = "0.11.2"
pin-project = "1.0" pin-project = "1.0"
tokio = { version = "1.0", features = ["macros", "time"] } tokio = { version = "1.11", features = ["macros", "time"] }
tokio-util = { version = "0.6.3" } tokio-util = { version = "0.6.3" }
[dev-dependencies] [dev-dependencies]
# Need the multi-threaded executor for testing # Need the multi-threaded executor for testing
tokio = { version = "1.0", features = ["macros", "time", "rt-multi-thread"] } tokio = { version = "1.11", features = ["macros", "time", "rt-multi-thread"] }

View File

@ -12,7 +12,7 @@ futures = "0.3"
observability_deps = { path = "../observability_deps" } observability_deps = { path = "../observability_deps" }
parking_lot = "0.11.2" parking_lot = "0.11.2"
rdkafka = "0.26.0" rdkafka = "0.26.0"
tokio = { version = "1.0", features = ["macros", "fs"] } tokio = { version = "1.11", features = ["macros", "fs"] }
[dev-dependencies] [dev-dependencies]
dotenv = "0.15.0" dotenv = "0.15.0"