From 71fca061206a3634bd21753523bbf2d55a3b38c2 Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Sun, 19 Jun 2022 07:52:03 -0400 Subject: [PATCH] Correct monero/processor dependencies --- coins/monero/Cargo.toml | 2 +- crypto/frost/README.md | 2 +- processor/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/coins/monero/Cargo.toml b/coins/monero/Cargo.toml index acc301aa..ae7e82e1 100644 --- a/coins/monero/Cargo.toml +++ b/coins/monero/Cargo.toml @@ -23,7 +23,7 @@ curve25519-dalek = { version = "3", features = ["std"] } group = { version = "0.12", 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 } monero = "0.16" diff --git a/crypto/frost/README.md b/crypto/frost/README.md index ecb80d2a..cae85207 100644 --- a/crypto/frost/README.md +++ b/crypto/frost/README.md @@ -1,6 +1,6 @@ # Modular FROST 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 to the variety in existence, enabling integration with existing systems. diff --git a/processor/Cargo.toml b/processor/Cargo.toml index 360f2767..a791c88d 100644 --- a/processor/Cargo.toml +++ b/processor/Cargo.toml @@ -18,7 +18,7 @@ serde_json = "1.0" curve25519-dalek = { version = "3", features = ["std"] } blake2 = "0.10" -transcript = { path = "../crypto/transcript" } +transcript = { package = "transcript-trait", path = "../crypto/transcript" } dalek-ff-group = { path = "../crypto/dalek-ff-group" } frost = { package = "modular-frost", path = "../crypto/frost" }