aboutsummaryrefslogtreecommitdiff
path: root/spake2/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'spake2/Cargo.toml')
-rw-r--r--spake2/Cargo.toml6
1 files changed, 5 insertions, 1 deletions
diff --git a/spake2/Cargo.toml b/spake2/Cargo.toml
index febbb6d..0558737 100644
--- a/spake2/Cargo.toml
+++ b/spake2/Cargo.toml
@@ -15,7 +15,7 @@ edition = "2021"
rust-version = "1.56"
[dependencies]
-curve25519-dalek = "3"
+curve25519-dalek = { version = "3", default-features = false, features = ["u64_backend"] }
rand_core = { version = "0.5", default-features = false, features = ["getrandom"] }
sha2 = "0.10"
hkdf = "0.12"
@@ -25,6 +25,10 @@ bencher = "0.1"
hex = "0.4"
num-bigint = "0.4"
+[features]
+default = []
+std = []
+
[[bench]]
name = "spake2"
harness = false