From 61cd8de355715c34f1abad0967e93e643ffdc8b1 Mon Sep 17 00:00:00 2001 From: Brian Warner Date: Thu, 18 Jul 2019 00:54:01 -0700 Subject: [PATCH] spake2/Cargo.toml: num-bigint is merely a dev-dependency We only use it in unit tests. This might help with no-std, so refs #15 --- spake2/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spake2/Cargo.toml b/spake2/Cargo.toml index e6097bf..953d2b8 100644 --- a/spake2/Cargo.toml +++ b/spake2/Cargo.toml @@ -30,11 +30,11 @@ curve25519-dalek = "1" rand = "0.6" sha2 = "0.8" hkdf = "0.7" -num-bigint = "0.2" hex = "0.3" [dev-dependencies] bencher = "0.1" +num-bigint = "0.2" [[bench]] name = "spake2" -- 2.44.0