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
parent
0a0afa9485
commit
b67610d9b9
|
@ -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",
|
||||||
|
|
|
@ -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"
|
||||||
|
|
|
@ -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"] }
|
|
@ -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"
|
||||||
|
|
|
@ -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" }
|
||||||
|
|
|
@ -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"] }
|
||||||
|
|
|
@ -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"] }
|
||||||
|
|
|
@ -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"
|
||||||
|
|
|
@ -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"] }
|
||||||
|
|
|
@ -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]
|
||||||
|
|
||||||
|
|
|
@ -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" }
|
||||||
|
|
|
@ -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"
|
||||||
|
|
|
@ -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" }
|
||||||
|
|
|
@ -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"] }
|
||||||
|
|
|
@ -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]
|
||||||
|
|
|
@ -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"
|
||||||
|
|
|
@ -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" }
|
||||||
|
|
||||||
|
|
|
@ -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"] }
|
||||||
|
|
|
@ -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"
|
||||||
|
|
Loading…
Reference in New Issue