2023-06-15 09:23:37 -07:00
|
|
|
[package]
|
|
|
|
name = "trusted-dealer"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2024-06-24 10:47:49 -07:00
|
|
|
frost-core = { version = "2.0.0-rc.0", features = ["serde"] }
|
2024-08-13 07:35:22 -07:00
|
|
|
frost-rerandomized = { version = "2.0.0-rc.0", features = ["serde"] }
|
2024-06-24 10:47:49 -07:00
|
|
|
frost-ed25519 = { version = "2.0.0-rc.0", features = ["serde"] }
|
2024-08-13 07:35:22 -07:00
|
|
|
reddsa = { git = "https://github.com/ZcashFoundation/reddsa.git", rev = "56a31af7099b95737031ef6cf251939ed99627c0", features = ["frost"] }
|
2024-09-25 10:12:58 -07:00
|
|
|
clap = { version = "4.5.18", features = ["derive"] }
|
2023-06-15 09:23:37 -07:00
|
|
|
thiserror = "1.0"
|
|
|
|
rand = "0.8"
|
|
|
|
hex = "0.4"
|
2024-05-20 14:14:06 -07:00
|
|
|
itertools = "0.13.0"
|
2023-06-15 09:23:37 -07:00
|
|
|
exitcode = "1.1.2"
|
2023-07-20 15:27:33 -07:00
|
|
|
serde_json = "1.0"
|
|
|
|
|
2023-07-21 18:17:28 -07:00
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
|