From cac93d2bc7eab08399dbef21f9c649ebdbd71b77 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Sat, 20 Jul 2024 07:32:11 +0100 Subject: [PATCH] chore(ws): remove unused dev dep --- actix-ws/Cargo.toml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/actix-ws/Cargo.toml b/actix-ws/Cargo.toml index ab74c60df..c6a90976c 100644 --- a/actix-ws/Cargo.toml +++ b/actix-ws/Cargo.toml @@ -20,13 +20,12 @@ actix-http = { version = "3", default-features = false, features = ["ws"] } actix-web = { version = "4", default-features = false } bytestring = "1" futures-core = "0.3.17" -tokio = { version = "1", features = ["sync"] } +tokio = { version = "1.24", features = ["sync"] } [dev-dependencies] actix-web = "4.8" futures-util = { version = "0.3.17", default-features = false, features = ["std"] } -pretty_env_logger = "0.5" -tokio = { version = "1", features = ["sync", "rt", "macros"] } +tokio = { version = "1.24", features = ["sync", "rt", "macros"] } tracing = "0.1.30" tracing-subscriber = { version = "0.3", features = ["env-filter"] }