Merge pull request #348 from serai-dex/current-crypto-crates

Current crypto crates
This commit is contained in:
Luke Parker
2023-08-21 01:24:16 -04:00
committed by GitHub
18 changed files with 74 additions and 74 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "frost-schnorrkel"
version = "0.1.0"
version = "0.1.2"
description = "modular-frost Algorithm compatible with Schnorrkel"
license = "MIT"
repository = "https://github.com/serai-dex/serai/tree/develop/crypto/schnorrkel"
@@ -17,13 +17,13 @@ rustdoc-args = ["--cfg", "docsrs"]
rand_core = "0.6"
zeroize = "^1.5"
transcript = { package = "flexible-transcript", path = "../transcript", version = "0.3", features = ["merlin"] }
transcript = { package = "flexible-transcript", path = "../transcript", version = "^0.3.2", features = ["merlin"] }
group = "0.13"
ciphersuite = { path = "../ciphersuite", version = "0.3", features = ["std", "ristretto"] }
schnorr = { package = "schnorr-signatures", path = "../schnorr", version = "0.4" }
frost = { path = "../frost", package = "modular-frost", version = "0.7", features = ["ristretto"] }
ciphersuite = { path = "../ciphersuite", version = "^0.4.1", features = ["std", "ristretto"] }
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" }