From 7623bf9a6c67bf72cdf78c50ff79f707f759d6ff Mon Sep 17 00:00:00 2001 From: brxken128 <77554505+brxken128@users.noreply.github.com> Date: Wed, 25 Jan 2023 14:03:00 +0000 Subject: [PATCH] change `fs` and `macros` `tokio` features to dev-deps --- crates/crypto/Cargo.toml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/crates/crypto/Cargo.toml b/crates/crypto/Cargo.toml index d1f199d0d..e3b790191 100644 --- a/crates/crypto/Cargo.toml +++ b/crates/crypto/Cargo.toml @@ -42,15 +42,13 @@ specta = { workspace = true, optional = true } hex = "0.4.3" +tokio = { version = "1.21.2", features = ["io-util", "rt-multi-thread"] } + +[dev-dependencies] tokio = { version = "1.21.2", features = [ - "io-util", - "rt-multi-thread", "fs", "macros", -] } - -# [dev-dependencies] -# criterion = "0.4.0" +] } # features needed for examples [features] rspc = ["dep:rspc", "dep:specta"]