From 2362d7f91d46de53f4e01f01386e813742e36a97 Mon Sep 17 00:00:00 2001 From: Emulator000 Date: Fri, 25 Sep 2020 18:47:45 +0200 Subject: [PATCH] Removed Tokio dependencies for non test --- Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index b2329f4..01b9b62 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "simple-cache" description = "A basic and simple Rust library async/await ready caching implementation for structures." - version = "0.1.1" + version = "0.1.2" authors = ["Emulator000 "] edition = "2018" readme = "README.md" @@ -12,4 +12,6 @@ [dependencies] async-std = "^1.6" arc-swap = "^0.4" + +[dev-dependencies] tokio = { version = "^0.2", features = ["full"] }