-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (46 loc) · 2.14 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "lit-frost"
version = "0.2.0"
edition = "2021"
[dependencies]
anyhow = "1.0"
curve25519-dalek = { version = "=4.2.2", features = ["rand_core", "group"], package = "curve25519-dalek-ml" }
ed25519-dalek = "2.1"
ed448-goldilocks = { version = "0.13", package = "ed448-goldilocks-plus" }
frost-core = { version = "2.0.0", features = ["internals"], git = "https://github.com/LIT-Protocol/frost.git", branch = "2.0.0" }
frost-ed25519 = { version = "2.0.0", git = "https://github.com/LIT-Protocol/frost.git", branch = "2.0.0" }
frost-ed448 = { version = "2.0.0", git = "https://github.com/LIT-Protocol/frost.git", branch = "2.0.0" }
frost-p256 = { version = "2.0.0", git = "https://github.com/LIT-Protocol/frost.git", branch = "2.0.0" }
frost-p384 = { version = "2.0.0", git = "https://github.com/LIT-Protocol/frost.git", branch = "2.0.0" }
frost-redjubjub = { version = "2.0.0", git = "https://github.com/LIT-Protocol/frost.git", branch = "2.0.0" }
frost-rerandomized = { version = "2.0.0", git = "https://github.com/LIT-Protocol/frost.git", branch = "2.0.0" }
frost-ristretto255 = { version = "2.0.0", git = "https://github.com/LIT-Protocol/frost.git", branch = "2.0.0" }
frost-secp256k1 = { version = "2.0.0", git = "https://github.com/LIT-Protocol/frost.git", branch = "2.0.0" }
frost-taproot = { version = "2.0.0", git = "https://github.com/LIT-Protocol/frost.git", branch = "2.0.0" }
hex = "0.4"
jubjub = { package="jubjub-plus" , version = "0.10" }
k256 = { version = "0.13", features = ["arithmetic", "schnorr"] }
p256 = { version = "0.13", features = ["arithmetic"] }
p384 = { version = "0.13", features = ["arithmetic"] }
rand_core = "0.6"
reddsa = "0.5"
serde = "1.0"
serde_bare = "0.5"
sha2 = "0.10"
subtle = "2.6"
thiserror = "1.0"
vsss-rs = { version = "5.0.0-rc1", features = ["curve25519"] }
zeroize = "1.8"
[target.'cfg(target_pointer_width = "32")'.dependencies]
getrandom = { version = "0.2.14", features = ["js"] }
[dev-dependencies]
group = "0.13"
ff = "0.13"
gennaro-dkg = "1.0.0-pre3"
lazy_static = "1.4"
maplit = "1.0"
serde_json = "1.0"
rand = "0.8"
rand_chacha = "0.3.1"
rstest = "0.23"
signature_crypto = { version = "2.2", package = "signature" }