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

@@ -12,7 +12,6 @@ all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
hex-literal = "0.3"
lazy_static = "1"
thiserror = "1"
@@ -22,12 +21,12 @@ rand = "0.8"
rand_distr = "0.4"
zeroize = { version = "^1.5", features = ["zeroize_derive"] }
subtle = "2.4"
subtle = "^2.4"
sha3 = "0.10"
blake2 = { version = "0.10", optional = true }
curve25519-dalek = { version = "3", features = ["std"] }
curve25519-dalek = { version = "^3.2", features = ["std"] }
group = { version = "0.12" }
dalek-ff-group = { path = "../../crypto/dalek-ff-group", version = "0.1" }
@@ -54,6 +53,8 @@ dalek-ff-group = { path = "../../crypto/dalek-ff-group", version = "0.1" }
monero-generators = { path = "generators", version = "0.1" }
[dev-dependencies]
hex-literal = "0.3"
tokio = { version = "1", features = ["full"] }
frost = { package = "modular-frost", path = "../../crypto/frost", version = "0.5", features = ["ed25519", "tests"] }