From 9c2d1eced6435a143279b779c5a18dd0645778e5 Mon Sep 17 00:00:00 2001 From: tottoto Date: Sat, 28 Dec 2024 10:03:11 +0900 Subject: [PATCH] Remove unused crate from dependency --- Cargo.toml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d9b8790..cfeda6d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,17 +27,14 @@ rand = { version = "0.8.5", features = ["small_rng"] } rand_distr = "0.4.3" regex = { version = "1", optional = true } scoped-tls = "1.0.1" -tokio = { version = "1.25.0", features = ["full"] } -tokio-stream = "0.1" -tokio-test = "0.4.2" -tokio-util = "0.7.4" +tokio = { version = "1.25.0", features = ["full", "test-util"] } tracing = "0.1" -tracing-subscriber = { version = "0.3", features = ["env-filter"] } [dev-dependencies] doc-comment = "0.3.3" regex = "1" -tracing-subscriber = "0.3" +tokio-test = "0.4.2" +tracing-subscriber = { version = "0.3", features = ["env-filter"] } [features] default = []