From 545b48f52935269221b4fef9fdf1c7ae6e61bd41 Mon Sep 17 00:00:00 2001 From: Mads Hougesen Date: Mon, 30 Oct 2023 13:05:05 +0100 Subject: [PATCH] refactor(hitt): use specific features of tokio instead of full --- hitt-cli/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hitt-cli/Cargo.toml b/hitt-cli/Cargo.toml index a5efdde..86c742f 100644 --- a/hitt-cli/Cargo.toml +++ b/hitt-cli/Cargo.toml @@ -14,4 +14,4 @@ hitt-parser = { path = "../hitt-parser" } hitt-request = { path = "../hitt-request" } jsonformat = "2.0.0" reqwest = "0.11.20" -tokio = { version = "1.32.0", features = ["full"] } +tokio = { version = "1.32.0", features = ["fs", "macros", "rt-multi-thread"] }