-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
32 lines (27 loc) · 1.2 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "ironfish-frost"
version = "0.1.0"
description = "Implementation of multi-signature primitives for the Iron Fish chain, based on the FROST protocol"
license = "MPL-2.0"
edition = "2021"
authors = ["Iron Fish <[email protected]> (https://ironfish.network)"]
homepage = "https://ironfish.network/"
repository = "https://github.com/iron-fish/ironfish-frost"
[dependencies]
blake3 = { version = "1.5.0", optional = true, default-features = false }
chacha20 = "0.9.1"
chacha20poly1305 = "0.10.1"
ed25519-dalek = { version = "2.1.0", default-features = false, features = ["rand_core", "alloc"] }
rand_chacha = { version = "0.3.1", optional = true, default-features = false }
rand_core = { version = "0.6.4", default-features = false, features = ["alloc"] }
ironfish-reddsa = { version = "0.1.0", default-features = false, features = ["frost"] }
siphasher = { version = "1.0.0", default-features = false }
x25519-dalek = { version = "2.0.0", default-features = false, features = ["reusable_secrets", "static_secrets"] }
[dev-dependencies]
hex-literal = "0.4.1"
rand = "0.8.5"
[features]
default = ["dkg", "signing", "std"]
std = ["ironfish-reddsa/std"]
signing = ["dep:blake3", "dep:rand_chacha"]
dkg = []