build(deps): bump frost-ed25519 from 2.0.0-rc.0 to 2.0.0 (#366)
Bumps [frost-ed25519](https://github.com/ZcashFoundation/frost) from 2.0.0-rc.0 to 2.0.0. - [Release notes](https://github.com/ZcashFoundation/frost/releases) - [Commits](https://github.com/ZcashFoundation/frost/compare/frost-ed25519/v2.0.0-rc.0...frost-ed25519/v2.0.0) --- updated-dependencies: - dependency-name: frost-ed25519 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
parent
2dcb4f1fd0
commit
ee164e237b
|
@ -794,17 +794,6 @@ dependencies = [
|
||||||
"syn 1.0.109",
|
"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]]
|
[[package]]
|
||||||
name = "derive-getters"
|
name = "derive-getters"
|
||||||
version = "0.5.0"
|
version = "0.5.0"
|
||||||
|
@ -1086,7 +1075,7 @@ dependencies = [
|
||||||
"byteorder",
|
"byteorder",
|
||||||
"const-crc32-nostd",
|
"const-crc32-nostd",
|
||||||
"debugless-unwrap",
|
"debugless-unwrap",
|
||||||
"derive-getters 0.5.0",
|
"derive-getters",
|
||||||
"document-features",
|
"document-features",
|
||||||
"hex",
|
"hex",
|
||||||
"itertools",
|
"itertools",
|
||||||
|
@ -1102,9 +1091,9 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "frost-ed25519"
|
name = "frost-ed25519"
|
||||||
version = "2.0.0-rc.0"
|
version = "2.0.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "bab23316e09987113dc8a2a8f0b656d7f1b24dc2afdc8c34df98276d1158c97d"
|
checksum = "4186731878c57b4e4d5d1103c8e0d2a827d3cb63cf577826ce29d52c34be7d39"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"curve25519-dalek",
|
"curve25519-dalek",
|
||||||
"document-features",
|
"document-features",
|
||||||
|
@ -1116,11 +1105,11 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "frost-rerandomized"
|
name = "frost-rerandomized"
|
||||||
version = "2.0.0-rc.0"
|
version = "2.0.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "bdb14a6054f9ce5aa4912c60c11392d42c43acec8295ee1df1f67a9d0b7a73ee"
|
checksum = "1a9d77595060546b53543d96b83dbeacaf3907e40a89763a8bb22124812b0cb6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"derive-getters 0.4.0",
|
"derive-getters",
|
||||||
"document-features",
|
"document-features",
|
||||||
"frost-core",
|
"frost-core",
|
||||||
"hex",
|
"hex",
|
||||||
|
|
|
@ -11,7 +11,7 @@ derivative = "2.2.0"
|
||||||
eyre = "0.6.12"
|
eyre = "0.6.12"
|
||||||
frost-core = { version = "2.0.0", features = ["serde"] }
|
frost-core = { version = "2.0.0", features = ["serde"] }
|
||||||
frost-rerandomized = { version = "2.0.0-rc.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"] }
|
reddsa = { git = "https://github.com/ZcashFoundation/reddsa.git", rev = "ed49e9ca0699a6450f6d4a9fe62ff168f5ea1ead", features = ["frost", "serde"] }
|
||||||
hex = { version = "0.4", features = ["serde"] }
|
hex = { version = "0.4", features = ["serde"] }
|
||||||
thiserror = "2.0"
|
thiserror = "2.0"
|
||||||
|
|
|
@ -8,7 +8,7 @@ edition = "2021"
|
||||||
[dependencies]
|
[dependencies]
|
||||||
eyre = "0.6.12"
|
eyre = "0.6.12"
|
||||||
frost-core = { version = "2.0.0", features = ["serde"] }
|
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"] }
|
reddsa = { git = "https://github.com/ZcashFoundation/reddsa.git", rev = "ed49e9ca0699a6450f6d4a9fe62ff168f5ea1ead", features = ["frost"] }
|
||||||
clap = { version = "4.5.20", features = ["derive"] }
|
clap = { version = "4.5.20", features = ["derive"] }
|
||||||
hex = { version = "0.4", features = ["serde"] }
|
hex = { version = "0.4", features = ["serde"] }
|
||||||
|
|
|
@ -25,7 +25,7 @@ postcard = "1.0.10"
|
||||||
tempfile = "3.13.0"
|
tempfile = "3.13.0"
|
||||||
serde_json = "1.0"
|
serde_json = "1.0"
|
||||||
frost-core = { version = "2.0.0", features = ["serde"] }
|
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"] }
|
frost-rerandomized = { version = "2.0.0-rc.0", features = ["serde"] }
|
||||||
reddsa = { git = "https://github.com/ZcashFoundation/reddsa.git", rev = "ed49e9ca0699a6450f6d4a9fe62ff168f5ea1ead", features = ["frost"] }
|
reddsa = { git = "https://github.com/ZcashFoundation/reddsa.git", rev = "ed49e9ca0699a6450f6d4a9fe62ff168f5ea1ead", features = ["frost"] }
|
||||||
rand = "0.8"
|
rand = "0.8"
|
||||||
|
|
|
@ -10,7 +10,7 @@ async-trait = "0.1.83"
|
||||||
derivative = "2.2.0"
|
derivative = "2.2.0"
|
||||||
frost-core = { version = "2.0.0", features = ["serde"] }
|
frost-core = { version = "2.0.0", features = ["serde"] }
|
||||||
frost-rerandomized = { version = "2.0.0-rc.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"] }
|
reddsa = { git = "https://github.com/ZcashFoundation/reddsa.git", rev = "ed49e9ca0699a6450f6d4a9fe62ff168f5ea1ead", features = ["frost"] }
|
||||||
hex = "0.4"
|
hex = "0.4"
|
||||||
rand = "0.8"
|
rand = "0.8"
|
||||||
|
|
|
@ -29,7 +29,7 @@ uuid = { version = "1.11.0", features = ["v4", "fast-rng", "serde"] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
axum-test = "16.3.0"
|
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 = [
|
reddsa = { git = "https://github.com/ZcashFoundation/reddsa.git", rev = "ed49e9ca0699a6450f6d4a9fe62ff168f5ea1ead", features = [
|
||||||
"frost",
|
"frost",
|
||||||
"serde",
|
"serde",
|
||||||
|
|
|
@ -4,7 +4,7 @@ version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[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"] }
|
reddsa = { git = "https://github.com/ZcashFoundation/reddsa.git", rev = "ed49e9ca0699a6450f6d4a9fe62ff168f5ea1ead", features = ["frost"] }
|
||||||
hex = "0.4"
|
hex = "0.4"
|
||||||
rand = "0.8"
|
rand = "0.8"
|
||||||
|
@ -13,7 +13,7 @@ serde_json = "1.0"
|
||||||
tokio = { version = "1", features = ["full"] }
|
tokio = { version = "1", features = ["full"] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
frost-ed25519 = { version = "2.0.0-rc.0", features = ["serde"] }
|
frost-ed25519 = { version = "2.0.0", features = ["serde"] }
|
||||||
dkg = { path = "../dkg"}
|
dkg = { path = "../dkg"}
|
||||||
trusted-dealer = { path = "../trusted-dealer"}
|
trusted-dealer = { path = "../trusted-dealer"}
|
||||||
participant = { path = "../participant"}
|
participant = { path = "../participant"}
|
||||||
|
|
|
@ -8,7 +8,7 @@ edition = "2021"
|
||||||
[dependencies]
|
[dependencies]
|
||||||
frost-core = { version = "2.0.0", features = ["serde"] }
|
frost-core = { version = "2.0.0", features = ["serde"] }
|
||||||
frost-rerandomized = { version = "2.0.0-rc.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"] }
|
reddsa = { git = "https://github.com/ZcashFoundation/reddsa.git", rev = "ed49e9ca0699a6450f6d4a9fe62ff168f5ea1ead", features = ["frost"] }
|
||||||
clap = { version = "4.5.20", features = ["derive"] }
|
clap = { version = "4.5.20", features = ["derive"] }
|
||||||
thiserror = "2.0"
|
thiserror = "2.0"
|
||||||
|
|
Loading…
Reference in New Issue