From 5ff9ab7f465decf42feec9dc2d5f3791cb3430e4 Mon Sep 17 00:00:00 2001 From: "Aode (Lion)" Date: Wed, 9 Mar 2022 23:11:41 -0600 Subject: [PATCH] Remove io-util tokio feature --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 34dae3c..9abd38f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "actix-ws" description = "Websockets for the Actix runtime, without Actors" -version = "0.2.3" +version = "0.2.4" authors = ["asonix "] readme = "README.md" repository = "https://git.asonix.dog/asonix/actix-actorless-websockets" @@ -18,4 +18,4 @@ actix-http = { version = "3.0", default-features = false, features = ["ws"] } actix-web = { version = "4.0", default-features = false } futures-core = "0.3" pin-project-lite = "0.2" -tokio = { version = "1", features = ["sync", "io-util"] } +tokio = { version = "1", features = ["sync"] }