From 0f0a833dacab7a493f19153b6c71b0a378cc3e0f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 19 Jul 2022 22:59:58 +0000 Subject: [PATCH] fix(deps): update rust crate tokio to 1.20.0 --- Cargo.lock | 5 +++-- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f46f3cc..5113044 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -708,10 +708,11 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.19.2" +version = "1.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c51a52ed6686dd62c320f9b89299e9dfb46f730c7a48e635c19f21d116cb1439" +checksum = "57aec3cfa4c296db7255446efb4928a6be304b431a806216105542a67b6ca82e" dependencies = [ + "autocfg", "bytes", "libc", "memchr", diff --git a/Cargo.toml b/Cargo.toml index f8f4454..04c1918 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,4 +27,4 @@ tungstenite = "0.17.3" clap = { version = "3.2.13", features = ["derive"] } futures-util = { version = "0.3", default-features = false, features = ["sink", "std"] } log = { version = "0.4.17", features = ["release_max_level_info", "max_level_debug"] } -tokio = { version = "1.19.2", features = ["rt-multi-thread", "macros", "net"] } +tokio = { version = "1.20.0", features = ["rt-multi-thread", "macros", "net"] }