From 1b1aa564d2c96d6b14c79bab7aad9993b5f2d922 Mon Sep 17 00:00:00 2001 From: Vincent Junge Date: Sat, 24 Jun 2023 08:52:45 +0200 Subject: [PATCH] fixed tokio features --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index cece3e2..3590341 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ backend = ["poem", "sqlx"] client = [] [dependencies] -tokio = {version = "1.28.1", features = ["rt", "macros", "rt-multi-thread", "full"]} +tokio = {version = "1.28.1"} serde = {version = "1.0.163", features = ["derive"]} serde_json = {version= "1.0.96", features = ["raw_value"]} serde-aux = "4.2.0" @@ -36,5 +36,6 @@ thiserror = "1.0.40" jsonwebtoken = "8.3.0" [dev-dependencies] +tokio = {version = "1.28.1", features = ["full"]} lazy_static = "1.4.0" rusty-hook = "0.11.2" \ No newline at end of file