From 9e4e41340000b7a31c7383e86d1dc344c722191b Mon Sep 17 00:00:00 2001 From: Alice Ryhl Date: Fri, 15 May 2020 23:27:08 +0200 Subject: [PATCH] Update Tokio to 0.2.21 As Tokio version 0.2.21 contains a fix in the broadcast channel that removes a memory leak in mini-redis, I don't think 0.2.20 should be considered the minimum supported version, even if the codebase compiles with that version. Refs: #38 --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a350dd4..9bf331e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -598,9 +598,9 @@ dependencies = [ [[package]] name = "tokio" -version = "0.2.20" +version = "0.2.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05c1d570eb1a36f0345a5ce9c6c6e665b70b73d11236912c0b477616aeec47b1" +checksum = "d099fa27b9702bed751524694adbe393e18b36b204da91eb1cbbbbb4a5ee2d58" dependencies = [ "bytes", "fnv", diff --git a/Cargo.toml b/Cargo.toml index dece00c..0df3fa5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ async-stream = "0.2.1" atoi = "0.3.2" bytes = "0.5.4" structopt = "0.3.14" -tokio = { version = "0.2.20", features = ["full"] } +tokio = { version = "0.2.21", features = ["full"] } tracing = "0.1.13" tracing-futures = { version = "0.2.3" } tracing-subscriber = "0.2.2"