mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-08 12:19:24 +00:00
Correct monero/processor dependencies
This commit is contained in:
@@ -23,7 +23,7 @@ curve25519-dalek = { version = "3", features = ["std"] }
|
|||||||
group = { version = "0.12", optional = true }
|
group = { version = "0.12", optional = true }
|
||||||
|
|
||||||
dalek-ff-group = { path = "../../crypto/dalek-ff-group", optional = true }
|
dalek-ff-group = { path = "../../crypto/dalek-ff-group", optional = true }
|
||||||
transcript = { path = "../../crypto/transcript", optional = true }
|
transcript = { package = "transcript-trait", path = "../../crypto/transcript", optional = true }
|
||||||
frost = { package = "modular-frost", path = "../../crypto/frost", features = ["ed25519"], optional = true }
|
frost = { package = "modular-frost", path = "../../crypto/frost", features = ["ed25519"], optional = true }
|
||||||
|
|
||||||
monero = "0.16"
|
monero = "0.16"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# Modular FROST
|
# Modular FROST
|
||||||
|
|
||||||
A modular implementation of FROST for any curve with a ff/group API. Notably,
|
A modular implementation of FROST for any curve with a ff/group API. Notably,
|
||||||
beyond curve modularity, custom algorithms may be specified providing support
|
beyond curve modularity, custom algorithms may be specified, providing support
|
||||||
for privacy coins. The provided Schnorr algorithm also has a modular HRAM due
|
for privacy coins. The provided Schnorr algorithm also has a modular HRAM due
|
||||||
to the variety in existence, enabling integration with existing systems.
|
to the variety in existence, enabling integration with existing systems.
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ serde_json = "1.0"
|
|||||||
curve25519-dalek = { version = "3", features = ["std"] }
|
curve25519-dalek = { version = "3", features = ["std"] }
|
||||||
blake2 = "0.10"
|
blake2 = "0.10"
|
||||||
|
|
||||||
transcript = { path = "../crypto/transcript" }
|
transcript = { package = "transcript-trait", path = "../crypto/transcript" }
|
||||||
dalek-ff-group = { path = "../crypto/dalek-ff-group" }
|
dalek-ff-group = { path = "../crypto/dalek-ff-group" }
|
||||||
frost = { package = "modular-frost", path = "../crypto/frost" }
|
frost = { package = "modular-frost", path = "../crypto/frost" }
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user