-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (33 loc) · 885 Bytes
/
Cargo.toml
File metadata and controls
41 lines (33 loc) · 885 Bytes
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
[package]
name = "random-beacon"
version = "0.1.0"
edition = "2018"
license = "GPL-3.0-or-later"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
sha2 = "0.9"
round-based = "0.1"
curve25519-dalek = "3"
typenum = "1"
serde = "1"
generic-array = { version = "0.14", features = ["serde"] }
phantom-type = "0.3"
#curv-kzen = "0.8.0-rc1"
[dependencies.curv-kzen]
version = "0.9"
default-features = false
[dependencies.bls]
git = "https://github.com/ZenGo-X/multi-party-bls"
branch = "construct-localkey"
default-features = false
[dev-dependencies]
bincode = "1"
rand = { version = "0.8", features = ["small_rng"] }
[dev-dependencies.round-based]
version = "0.1"
features = ["dev"]
[features]
default = ["curv-kzen/rust-gmp-kzen"]
[patch.crates-io.curv-kzen]
git = "https://github.com/ZenGo-X/curv"
branch = "polynomial"