diff --git a/Cargo.lock b/Cargo.lock index 0f89e6d..b9e8cd2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -794,17 +794,6 @@ dependencies = [ "syn 1.0.109", ] -[[package]] -name = "derive-getters" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0a6433aac097572ea8ccc60b3f2e756c661c9aeed9225cdd4d0cb119cb7ff6ba" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.87", -] - [[package]] name = "derive-getters" version = "0.5.0" @@ -1086,7 +1075,7 @@ dependencies = [ "byteorder", "const-crc32-nostd", "debugless-unwrap", - "derive-getters 0.5.0", + "derive-getters", "document-features", "hex", "itertools", @@ -1102,9 +1091,9 @@ dependencies = [ [[package]] name = "frost-ed25519" -version = "2.0.0-rc.0" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bab23316e09987113dc8a2a8f0b656d7f1b24dc2afdc8c34df98276d1158c97d" +checksum = "4186731878c57b4e4d5d1103c8e0d2a827d3cb63cf577826ce29d52c34be7d39" dependencies = [ "curve25519-dalek", "document-features", @@ -1116,11 +1105,11 @@ dependencies = [ [[package]] name = "frost-rerandomized" -version = "2.0.0-rc.0" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bdb14a6054f9ce5aa4912c60c11392d42c43acec8295ee1df1f67a9d0b7a73ee" +checksum = "1a9d77595060546b53543d96b83dbeacaf3907e40a89763a8bb22124812b0cb6" dependencies = [ - "derive-getters 0.4.0", + "derive-getters", "document-features", "frost-core", "hex", diff --git a/coordinator/Cargo.toml b/coordinator/Cargo.toml index 7c4e486..3cac4ae 100644 --- a/coordinator/Cargo.toml +++ b/coordinator/Cargo.toml @@ -11,7 +11,7 @@ derivative = "2.2.0" eyre = "0.6.12" frost-core = { version = "2.0.0", features = ["serde"] } frost-rerandomized = { version = "2.0.0-rc.0", features = ["serde"] } -frost-ed25519 = { version = "2.0.0-rc.0", features = ["serde"] } +frost-ed25519 = { version = "2.0.0", features = ["serde"] } reddsa = { git = "https://github.com/ZcashFoundation/reddsa.git", rev = "ed49e9ca0699a6450f6d4a9fe62ff168f5ea1ead", features = ["frost", "serde"] } hex = { version = "0.4", features = ["serde"] } thiserror = "2.0" diff --git a/dkg/Cargo.toml b/dkg/Cargo.toml index ad76920..6dfaefb 100644 --- a/dkg/Cargo.toml +++ b/dkg/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" [dependencies] eyre = "0.6.12" frost-core = { version = "2.0.0", features = ["serde"] } -frost-ed25519 = { version = "2.0.0-rc.0", features = ["serde"] } +frost-ed25519 = { version = "2.0.0", features = ["serde"] } reddsa = { git = "https://github.com/ZcashFoundation/reddsa.git", rev = "ed49e9ca0699a6450f6d4a9fe62ff168f5ea1ead", features = ["frost"] } clap = { version = "4.5.20", features = ["derive"] } hex = { version = "0.4", features = ["serde"] } diff --git a/frost-client/Cargo.toml b/frost-client/Cargo.toml index 62be9ac..f979ef7 100644 --- a/frost-client/Cargo.toml +++ b/frost-client/Cargo.toml @@ -25,7 +25,7 @@ postcard = "1.0.10" tempfile = "3.13.0" serde_json = "1.0" frost-core = { version = "2.0.0", features = ["serde"] } -frost-ed25519 = { version = "2.0.0-rc.0", features = ["serde"] } +frost-ed25519 = { version = "2.0.0", features = ["serde"] } frost-rerandomized = { version = "2.0.0-rc.0", features = ["serde"] } reddsa = { git = "https://github.com/ZcashFoundation/reddsa.git", rev = "ed49e9ca0699a6450f6d4a9fe62ff168f5ea1ead", features = ["frost"] } rand = "0.8" diff --git a/participant/Cargo.toml b/participant/Cargo.toml index 2f880e0..1407b4b 100644 --- a/participant/Cargo.toml +++ b/participant/Cargo.toml @@ -10,7 +10,7 @@ async-trait = "0.1.83" derivative = "2.2.0" frost-core = { version = "2.0.0", features = ["serde"] } frost-rerandomized = { version = "2.0.0-rc.0", features = ["serde"] } -frost-ed25519 = { version = "2.0.0-rc.0", features = ["serde"] } +frost-ed25519 = { version = "2.0.0", features = ["serde"] } reddsa = { git = "https://github.com/ZcashFoundation/reddsa.git", rev = "ed49e9ca0699a6450f6d4a9fe62ff168f5ea1ead", features = ["frost"] } hex = "0.4" rand = "0.8" diff --git a/server/Cargo.toml b/server/Cargo.toml index b8959c2..8898567 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -29,7 +29,7 @@ uuid = { version = "1.11.0", features = ["v4", "fast-rng", "serde"] } [dev-dependencies] axum-test = "16.3.0" -frost-ed25519 = { version = "2.0.0-rc.0", features = ["serde"] } +frost-ed25519 = { version = "2.0.0", features = ["serde"] } reddsa = { git = "https://github.com/ZcashFoundation/reddsa.git", rev = "ed49e9ca0699a6450f6d4a9fe62ff168f5ea1ead", features = [ "frost", "serde", diff --git a/tests/Cargo.toml b/tests/Cargo.toml index 2a1b05a..9efc02e 100644 --- a/tests/Cargo.toml +++ b/tests/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" edition = "2021" [dependencies] -frost-ed25519 = { version = "2.0.0-rc.0", features = ["serde"] } +frost-ed25519 = { version = "2.0.0", features = ["serde"] } reddsa = { git = "https://github.com/ZcashFoundation/reddsa.git", rev = "ed49e9ca0699a6450f6d4a9fe62ff168f5ea1ead", features = ["frost"] } hex = "0.4" rand = "0.8" @@ -13,7 +13,7 @@ serde_json = "1.0" tokio = { version = "1", features = ["full"] } [dev-dependencies] -frost-ed25519 = { version = "2.0.0-rc.0", features = ["serde"] } +frost-ed25519 = { version = "2.0.0", features = ["serde"] } dkg = { path = "../dkg"} trusted-dealer = { path = "../trusted-dealer"} participant = { path = "../participant"} diff --git a/trusted-dealer/Cargo.toml b/trusted-dealer/Cargo.toml index 96faa14..f7cd0d5 100644 --- a/trusted-dealer/Cargo.toml +++ b/trusted-dealer/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" [dependencies] frost-core = { version = "2.0.0", features = ["serde"] } frost-rerandomized = { version = "2.0.0-rc.0", features = ["serde"] } -frost-ed25519 = { version = "2.0.0-rc.0", features = ["serde"] } +frost-ed25519 = { version = "2.0.0", features = ["serde"] } reddsa = { git = "https://github.com/ZcashFoundation/reddsa.git", rev = "ed49e9ca0699a6450f6d4a9fe62ff168f5ea1ead", features = ["frost"] } clap = { version = "4.5.20", features = ["derive"] } thiserror = "2.0"