Minimize use of lazy_static in ed448

Increases usage of const values along with overall Field impl sanity 
with regards to the crypto_bigint backend.
This commit is contained in:
Luke Parker
2022-08-31 03:33:19 -04:00
parent a59bbe7635
commit 73566e756d
6 changed files with 100 additions and 112 deletions

View File

@@ -9,7 +9,6 @@ keywords = ["ed448", "ff", "group"]
edition = "2021"
[dependencies]
hex-literal = "0.3"
lazy_static = "1"
rand_core = "0.6"
@@ -27,4 +26,5 @@ crypto-bigint = { version = "0.4", features = ["zeroize"] }
dalek-ff-group = { path = "../dalek-ff-group", version = "^0.1.2" }
[dev-dependencies]
hex-literal = "0.3"
hex = "0.4"