From b86509178ed15db046643cb0b6543bc989bd4775 Mon Sep 17 00:00:00 2001 From: Andrey Tkachenko Date: Mon, 1 Feb 2021 13:46:06 +0400 Subject: [PATCH] Bump up tokio --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e5dd380..0be3191 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "messagebus" -version = "0.4.6" +version = "0.4.7" authors = ["Andrey Tkachenko "] repository = "https://github.com/andreytkachenko/messagebus.git" keywords = ["futures", "async", "tokio", "message", "bus"] @@ -11,7 +11,7 @@ exclude = [".gitignore", ".cargo/config", ".github/**", "codecov.yml"] edition = "2018" [dependencies] -tokio = { version = "0.2", features = ["parking_lot", "rt-threaded", "sync", "stream", "blocking"] } +tokio = { version = "1", features = ["parking_lot", "rt-multi-thread", "io-util", "sync"] } parking_lot = "0.11.1" async-trait = "0.1.42" futures = "0.3.8" @@ -19,4 +19,4 @@ anyhow = "1.0.34" crossbeam = "0.8.0" [dev-dependencies] -tokio = { version = "0.2", features = ["parking_lot", "rt-threaded", "sync", "stream", "macros"] } +tokio = { version = "1", features = ["macros", "parking_lot", "rt-multi-thread", "io-util", "sync"] }