Skip to content

Commit

Permalink
Using the latest zcash reddsa crate with no-std environment
Browse files Browse the repository at this point in the history
Based on this PR: ZcashFoundation/reddsa#166
  • Loading branch information
patnir committed Aug 8, 2024
1 parent 327150e commit 44d193d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,8 @@ chacha20poly1305 = "0.10.1"
ed25519-dalek = { version = "2.1.0", features = ["rand_core", "alloc"], default-features = false }
rand_chacha = { version = "0.3.1", optional = true, default-features = false }
rand_core = { version = "0.6.4", features = ["alloc"], default-features = false }
reddsa = { git = "https://github.com/iron-fish/reddsa.git", branch = "main", features = ["frost", "alloc"], default-features = false }
reddsa = { git = "https://github.com/ZcashFoundation/reddsa.git", rev = "98e48b4953b2cf98bea96107bbde800534e98d28", features = ["frost"], default-features = false }
frost-core = { git = "https://github.com/ZcashFoundation/frost.git", rev = "c6c3f2f", package = "frost-core", features = ["serialization", "serde", "cheater-detection"], default-features = false }
frost-rerandomized = { git = "https://github.com/ZcashFoundation/frost.git", rev = "c6c3f2f", package = "frost-rerandomized", features = ["serialization", "cheater-detection"], default-features = false }
siphasher = { version = "1.0.0", default-features = false }
x25519-dalek = { version = "2.0.0", features = ["reusable_secrets", "static_secrets", "getrandom"], default-features = false }

Expand All @@ -31,3 +30,6 @@ default = ["dkg","signing"]
std = []
signing = ["dep:blake3", "dep:rand_chacha", "std"]
dkg = []

[patch.crates-io]
frost-rerandomized = { git = "https://github.com/ZcashFoundation/frost.git", rev = "c6c3f2f", package = "frost-rerandomized", features = ["serialization", "cheater-detection"], default-features = false }

0 comments on commit 44d193d

Please sign in to comment.