mirror of
https://github.com/serai-dex/serai.git
synced 2025-01-05 10:29:40 +00:00
Bump FROST version
This commit is contained in:
parent
dbd39b557e
commit
33ee6b7a02
3 changed files with 6 additions and 6 deletions
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -1528,7 +1528,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "dleq"
|
name = "dleq"
|
||||||
version = "0.1.0"
|
version = "0.1.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"blake2",
|
"blake2",
|
||||||
"dalek-ff-group",
|
"dalek-ff-group",
|
||||||
|
@ -4521,7 +4521,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "modular-frost"
|
name = "modular-frost"
|
||||||
version = "0.2.0"
|
version = "0.2.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"dalek-ff-group",
|
"dalek-ff-group",
|
||||||
"dleq",
|
"dleq",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "dleq"
|
name = "dleq"
|
||||||
version = "0.1.0"
|
version = "0.1.1"
|
||||||
description = "Implementation of single and cross-curve Discrete Log Equality proofs"
|
description = "Implementation of single and cross-curve Discrete Log Equality proofs"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "modular-frost"
|
name = "modular-frost"
|
||||||
version = "0.2.0"
|
version = "0.2.1"
|
||||||
description = "Modular implementation of FROST over ff/group"
|
description = "Modular implementation of FROST over ff/group"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/serai-dex/serai"
|
repository = "https://github.com/serai-dex/serai"
|
||||||
|
@ -25,9 +25,9 @@ group = "0.12"
|
||||||
elliptic-curve = { version = "0.12", features = ["hash2curve"], optional = true }
|
elliptic-curve = { version = "0.12", features = ["hash2curve"], optional = true }
|
||||||
p256 = { version = "0.11", features = ["arithmetic", "bits", "hash2curve"], optional = true }
|
p256 = { version = "0.11", features = ["arithmetic", "bits", "hash2curve"], optional = true }
|
||||||
k256 = { version = "0.11", features = ["arithmetic", "bits", "hash2curve"], optional = true }
|
k256 = { version = "0.11", features = ["arithmetic", "bits", "hash2curve"], optional = true }
|
||||||
dalek-ff-group = { path = "../dalek-ff-group", version = "0.1", optional = true }
|
dalek-ff-group = { path = "../dalek-ff-group", version = "^0.1.2", optional = true }
|
||||||
|
|
||||||
transcript = { package = "flexible-transcript", path = "../transcript", features = ["recommended"], version = "0.1" }
|
transcript = { package = "flexible-transcript", path = "../transcript", features = ["recommended"], version = "^0.1.3" }
|
||||||
|
|
||||||
multiexp = { path = "../multiexp", version = "0.2", features = ["batch"] }
|
multiexp = { path = "../multiexp", version = "0.2", features = ["batch"] }
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue