From cacaf1effdce3b412b2a09b707d63f0afb47920c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Mar 2021 05:52:39 +0000 Subject: [PATCH] Bump tokio from 0.3.4 to 1.3.0 Bumps [tokio](https://github.com/tokio-rs/tokio) from 0.3.4 to 1.3.0. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-0.3.4...tokio-1.3.0) Signed-off-by: dependabot[bot] --- Cargo.lock | 22 +++++++++++++++------- Cargo.toml | 2 +- 2 files changed, 16 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6edba9c..95b0875 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -34,7 +34,7 @@ dependencies = [ "futures-util", "log", "pin-project", - "tokio", + "tokio 0.3.7", "tokio-rustls", "tungstenite", "webpki-roots", @@ -190,7 +190,7 @@ dependencies = [ "serde", "serde_json", "thiserror", - "tokio", + "tokio 1.3.0", "url", "xml-rs", ] @@ -909,17 +909,25 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "0.3.4" +version = "0.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9dfe2523e6fa84ddf5e688151d4e5fddc51678de9752c6512a24714c23818d61" +checksum = "46409491c9375a693ce7032101970a54f8a2010efb77e13f70788f0d84489e39" dependencies = [ "autocfg", - "lazy_static", "libc", "mio", + "pin-project-lite", +] + +[[package]] +name = "tokio" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8d56477f6ed99e10225f38f9f75f872f29b8b8bd8c0b946f63345bb144e9eeda" +dependencies = [ + "autocfg", "num_cpus", "pin-project-lite", - "slab", ] [[package]] @@ -929,7 +937,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7ba3f045b4a15afc543ffe6e02bae7ecf372e89a0f9f8c4b15b13f0ceed4f105" dependencies = [ "rustls", - "tokio", + "tokio 0.3.7", "webpki", ] diff --git a/Cargo.toml b/Cargo.toml index 1baa943..c90d382 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,6 +26,6 @@ log = "0.4" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" thiserror = "1.0" -tokio = { version = "0.3", features = ["rt", "rt-multi-thread", "sync"] } +tokio = { version = "1.3", features = ["rt", "rt-multi-thread", "sync"] } url = { version = "2.1", features = ["serde"] } xml-rs = "0.8"