23 lines
579 B
TOML
23 lines
579 B
TOML
[package]
|
|
name = "dkg"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
eyre = "0.6.8"
|
|
frost-ed25519 = { version = "0.6.0", features = ["serde"] }
|
|
reddsa = { git = "https://github.com/ZcashFoundation/reddsa.git", rev = "8534e283acf0015cc2450e2a6b49685a3bb3145d", features = ["frost"] }
|
|
hex = { version = "0.4", features = ["serde"] }
|
|
thiserror = "1.0"
|
|
rand = "0.8"
|
|
serde_json = "1.0"
|
|
itertools = "0.11.0"
|
|
exitcode = "1.1.2"
|
|
pipe = "0.4.0"
|
|
|
|
[features]
|
|
redpallas = []
|
|
default = []
|