From 86f16874859a3369e878967fc2f4146411d74492 Mon Sep 17 00:00:00 2001 From: th4s Date: Wed, 12 Jul 2023 12:02:57 +0200 Subject: [PATCH] Move tokio dep to dev-dependencies (#29) --- ot/mpz-ot/Cargo.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ot/mpz-ot/Cargo.toml b/ot/mpz-ot/Cargo.toml index db500f51..ff065a82 100644 --- a/ot/mpz-ot/Cargo.toml +++ b/ot/mpz-ot/Cargo.toml @@ -25,14 +25,14 @@ rand_core.workspace = true rand_chacha.workspace = true p256 = { workspace = true, optional = true } thiserror.workspace = true +rayon = { workspace = true } + +[dev-dependencies] +rstest = { workspace = true } +criterion = { workspace = true, features = ["async_tokio"] } tokio = { workspace = true, features = [ "net", "macros", "rt", "rt-multi-thread", ] } -rayon = { workspace = true } - -[dev-dependencies] -rstest = { workspace = true } -criterion = { workspace = true, features = ["async_tokio"] }