2023-06-15 09:23:37 -07:00
|
|
|
[package]
|
|
|
|
name = "participant"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-11-21 06:56:29 -08:00
|
|
|
frost-ed25519 = { version = "1.0.0-rc.0", features = ["serde"] }
|
|
|
|
reddsa = { git = "https://github.com/ZcashFoundation/reddsa.git", rev = "6e55be4da9fa7beec9f744d49a1bad844318a932", features = ["frost"] }
|
2023-06-19 11:58:27 -07:00
|
|
|
hex = "0.4"
|
2023-06-28 15:12:15 -07:00
|
|
|
rand = "0.8"
|
2023-12-18 13:30:13 -08:00
|
|
|
eyre = "0.6.11"
|
2023-07-11 08:21:39 -07:00
|
|
|
exitcode = "1.1.2"
|
2023-07-21 18:17:28 -07:00
|
|
|
serde_json = "1.0"
|
|
|
|
|
|
|
|
[features]
|
|
|
|
redpallas = []
|
|
|
|
default = []
|