From 673b4e1f8ea19e02cb265995a5106b065bc36fcc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 10 Mar 2021 05:08:47 +0000 Subject: [PATCH] build(deps): bump tokio from 0.2.21 to 1.3.0 Bumps [tokio](https://github.com/tokio-rs/tokio) from 0.2.21 to 1.3.0. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-0.2.21...tokio-1.3.0) Signed-off-by: dependabot[bot] --- Cargo.lock | 54 +++++++++++++++++++++++++++++++++++------------------- Cargo.toml | 2 +- 2 files changed, 36 insertions(+), 20 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 38d42f13..1a90cf94 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -19,7 +19,7 @@ dependencies = [ "parking_lot", "pin-project", "smallvec", - "tokio", + "tokio 0.2.24", "tokio-util 0.2.0", "trust-dns-proto", "trust-dns-resolver", @@ -36,7 +36,7 @@ dependencies = [ "futures-core", "futures-sink", "log", - "tokio", + "tokio 0.2.24", "tokio-util 0.2.0", ] @@ -125,7 +125,7 @@ dependencies = [ "futures-channel", "futures-util", "smallvec", - "tokio", + "tokio 0.2.24", ] [[package]] @@ -780,7 +780,7 @@ dependencies = [ "indexmap", "log", "slab", - "tokio", + "tokio 0.2.24", "tokio-util 0.3.1", ] @@ -878,7 +878,7 @@ dependencies = [ "net2", "pin-project", "time", - "tokio", + "tokio 0.2.24", "tower-service", "want", ] @@ -892,7 +892,7 @@ dependencies = [ "bytes", "hyper", "native-tls", - "tokio", + "tokio 0.2.24", "tokio-tls", ] @@ -1351,6 +1351,12 @@ version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f7505eeebd78492e0f6108f7171c4948dbb120ee8119d9d77d0afa5469bef67f" +[[package]] +name = "pin-project-lite" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc0e1f259c92177c30a4c9d177246edd0a3568b25756a977d0632cf8fa37e905" + [[package]] name = "pin-utils" version = "0.1.0" @@ -1595,11 +1601,11 @@ dependencies = [ "mime_guess", "native-tls", "percent-encoding 2.1.0", - "pin-project-lite", + "pin-project-lite 0.1.5", "serde", "serde_json", "serde_urlencoded", - "tokio", + "tokio 0.2.24", "tokio-tls", "url 2.1.1", "wasm-bindgen", @@ -1934,9 +1940,9 @@ dependencies = [ [[package]] name = "tokio" -version = "0.2.21" +version = "0.2.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d099fa27b9702bed751524694adbe393e18b36b204da91eb1cbbbbb4a5ee2d58" +checksum = "099837d3464c16a808060bb3f02263b412f6fafcb5d01c533d309985fbeebe48" dependencies = [ "bytes", "fnv", @@ -1947,12 +1953,22 @@ dependencies = [ "memchr", "mio", "mio-uds", - "pin-project-lite", + "pin-project-lite 0.1.5", "signal-hook-registry", "slab", "winapi 0.3.8", ] +[[package]] +name = "tokio" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8d56477f6ed99e10225f38f9f75f872f29b8b8bd8c0b946f63345bb144e9eeda" +dependencies = [ + "autocfg", + "pin-project-lite 0.2.6", +] + [[package]] name = "tokio-tls" version = "0.3.1" @@ -1960,7 +1976,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9a70f4fcd7b3b24fb194f837560168208f669ca8cb70d0c4b862944452396343" dependencies = [ "native-tls", - "tokio", + "tokio 0.2.24", ] [[package]] @@ -1973,8 +1989,8 @@ dependencies = [ "futures-core", "futures-sink", "log", - "pin-project-lite", - "tokio", + "pin-project-lite 0.1.5", + "tokio 0.2.24", ] [[package]] @@ -1987,8 +2003,8 @@ dependencies = [ "futures-core", "futures-sink", "log", - "pin-project-lite", - "tokio", + "pin-project-lite 0.1.5", + "tokio 0.2.24", ] [[package]] @@ -2022,7 +2038,7 @@ dependencies = [ "rand", "smallvec", "socket2", - "tokio", + "tokio 0.2.24", "url 2.1.1", ] @@ -2041,7 +2057,7 @@ dependencies = [ "lru-cache", "resolv-conf", "smallvec", - "tokio", + "tokio 0.2.24", "trust-dns-proto", ] @@ -2377,7 +2393,7 @@ dependencies = [ "serde", "serde_json", "structopt", - "tokio", + "tokio 1.3.0", "toml", "url_serde", ] diff --git a/Cargo.toml b/Cargo.toml index 0ddff570..ded19d95 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,7 @@ reqwest = { version = "^0.10", features = ["json"] } serde = { version = "^1.0", features = ["derive"] } serde_json = "^1.0" structopt = "^0.3" -tokio = "^0.2" +tokio = "^1.3" toml = "^0.5" url_serde = "^0.2"