From b49f8cbe4fe7b55afde3bd3273ea19d394d68976 Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Sun, 19 Jun 2022 06:38:06 -0400 Subject: [PATCH] Prepare FROST for publishing --- crypto/frost/Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crypto/frost/Cargo.toml b/crypto/frost/Cargo.toml index 929b1eb0..80ac587d 100644 --- a/crypto/frost/Cargo.toml +++ b/crypto/frost/Cargo.toml @@ -21,11 +21,11 @@ group = "0.12" elliptic-curve = { version = "0.12", features = ["hash2curve"], optional = true } p256 = { version = "0.11", features = ["arithmetic", "hash2curve"], optional = true } k256 = { version = "0.11", features = ["arithmetic", "hash2curve"], optional = true } -dalek-ff-group = { path = "../dalek-ff-group", optional = true } +dalek-ff-group = { path = "../dalek-ff-group", version = "0.1", optional = true } -transcript = { package = "transcript-trait", path = "../transcript" } +transcript = { package = "transcript-trait", path = "../transcript", version = "0.1" } -multiexp = { path = "../multiexp", features = ["batch"] } +multiexp = { path = "../multiexp", version = "0.1", features = ["batch"] } [dev-dependencies] rand = "0.8"