From 3d575ec2a4440e7e4597761eab907d63ef91175e Mon Sep 17 00:00:00 2001 From: cel 🌸 Date: Sat, 12 Apr 2025 09:24:19 +0100 Subject: feat: move tokio features to dev-dependencies to allow wasm support --- Cargo.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index acec773..3860e60 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,5 +13,9 @@ futures = "0.3.30" futures-util = { version = "0.3.31", features = ["sink"] } nom = "7.1.3" thiserror = "2.0.11" -tokio = { version = "1.36.0", features = ["io-util", "net", "io-std", "full"] } +tokio = { version = "1.36.0", features = ["io-util"] } tracing = "0.1.41" + +[dev-dependencies] +tokio = { version = "1.36.0", features = ["io-util", "macros", "rt-multi-thread", "io-std"] } + -- cgit