From 33d37b24bdf227a1ac7265ea7ace907d1e43dde4 Mon Sep 17 00:00:00 2001 From: Gwen Lg Date: Wed, 29 Oct 2025 00:29:12 +0100 Subject: [PATCH] fix: remove duplicate `net` feature of tokio Signed-off-by: Gwen Lg --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 8c680f4c..337cdd8c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -123,7 +123,7 @@ url = "2.3" futures = "0.3" futures-util = "0.3" -tokio = { version = "1.0", default-features = false, features = ["net", "rt", "rt-multi-thread", "io-util", "net", "time", "macros", "sync", "signal", "fs"] } +tokio = { version = "1.0", default-features = false, features = ["rt", "rt-multi-thread", "io-util", "net", "time", "macros", "sync", "signal", "fs"] } tokio-util = { version = "0.7", features = ["compat", "io"] } tokio-stream = { version = "0.1", features = ["net"] }