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

@@ -25,7 +25,7 @@ ciphersuite = { path = "../ciphersuite", version = "^0.4.1", features = ["std",
schnorr = { package = "schnorr-signatures", path = "../schnorr", version = "^0.5.1" }
frost = { path = "../frost", package = "modular-frost", version = "^0.8.1", features = ["ristretto"] }
schnorrkel = { version = "0.11", git = "https://github.com/serai-dex/schnorrkel" }
schnorrkel = { version = "0.11" }
[dev-dependencies]
frost = { path = "../frost", package = "modular-frost", features = ["tests"] }