From ed553ee68391713b10f0e6897ff1baded1bce81e Mon Sep 17 00:00:00 2001 From: "Carol (Nichols || Goulding)" <193874+carols10cents@users.noreply.github.com> Date: Fri, 19 Nov 2021 08:10:04 -0500 Subject: [PATCH] Only turn on tokio features that are used by this crate (#10) --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 28492ce..ee7753c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ license = "Apache-2.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -tokio = { version = "1.5.0", features = ["full"] } +tokio = { version = "1.5.0", features = ["macros", "rt-multi-thread", "sync", "time"] } futures = "0.3.14" thiserror = "1.0"