Start relying on curve25519-dalek's group feature

Removes git dependency for schnorrkel as well, now that schnorrkel has updated.
This commit is contained in:
Luke Parker
2023-09-12 08:42:55 -04:00
parent 1e6655408e
commit aa724c06bc
6 changed files with 144 additions and 201 deletions

View File

@@ -20,7 +20,7 @@ zeroize = { version = "1", default-features = false }
rand_core = { version = "0.6", default-features = false }
ciphersuite = { path = "../../crypto/ciphersuite", default-features = false, features = ["ristretto", "secp256k1"] }
schnorrkel = { git = "https://github.com/serai-dex/schnorrkel" }
schnorrkel = "0.11"
dkg = { path = "../../crypto/dkg", default-features = false, features = ["tests"] }
messages = { package = "serai-processor-messages", path = "../../processor/messages" }