Update and remove unused dependencies

This commit is contained in:
Luke Parker
2023-03-07 03:06:46 -05:00
parent d36fc026dd
commit 0e8c55e050
15 changed files with 35 additions and 52 deletions

View File

@@ -17,15 +17,15 @@ rand_core = "0.6"
digest = "0.10"
zeroize = { version = "^1.5", features = ["zeroize_derive"] }
subtle = "2.4"
subtle = "^2.4"
ff = "0.12"
ff = { version = "0.12", features = ["bits"] }
group = "0.12"
crypto-bigint = "0.4"
sha2 = "0.9"
curve25519-dalek = "3.2"
curve25519-dalek = "^3.2"
[dev-dependencies]
ff-group-tests = { path = "../ff-group-tests" }

View File

@@ -9,7 +9,7 @@ use subtle::{
use crypto_bigint::{Integer, Encoding, U256, U512};
use ff::{Field, PrimeField, FieldBits, PrimeFieldBits};
use group::ff::{Field, PrimeField, FieldBits, PrimeFieldBits};
use crate::{constant_time, math, from_uint};

View File

@@ -32,8 +32,11 @@ use dalek::{
},
};
use ff::{Field, PrimeField, FieldBits, PrimeFieldBits};
use group::{Group, GroupEncoding, prime::PrimeGroup};
use group::{
ff::{Field, PrimeField, FieldBits, PrimeFieldBits},
Group, GroupEncoding,
prime::PrimeGroup,
};
pub mod field;