From 307e54f256a67529f7ce7e57ba685a80ed58e693 Mon Sep 17 00:00:00 2001 From: DarkCat09 Date: Wed, 7 Aug 2024 14:18:41 +0400 Subject: [PATCH] fix(deps): tokio/fs should be in file-sscv feature --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4f8c96b..cee330f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -31,7 +31,7 @@ path = "examples/main.rs" required-features = ["file-sscv"] [dev-dependencies] -tokio = { version = "1.39.2", features = ["macros", "rt-multi-thread", "io-util", "fs"] } +tokio = { version = "1.39.2", features = ["macros", "rt-multi-thread"] } [features] -file-sscv = ["dep:dashmap"] +file-sscv = ["dep:dashmap", "tokio/fs"]