-
Notifications
You must be signed in to change notification settings - Fork 104
/
Copy pathCargo.toml
63 lines (61 loc) · 1.99 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[package]
authors = ["Espresso Systems <hello@espressosys.com>"]
description = "Types and traits for the HotShot consesus module"
edition = "2021"
name = "hotshot-types"
version = "0.1.11"
license = "MIT"
[dependencies]
anyhow = { workspace = true }
ark-bn254 = { workspace = true }
ark-ed-on-bn254 = { workspace = true }
ark-ff = { workspace = true }
ark-serialize = { workspace = true }
ark-srs = { version = "0.3.1" }
ark-std = { workspace = true }
async-lock = { workspace = true }
async-trait = { workspace = true }
bincode = { workspace = true }
bitvec = { workspace = true }
blake3 = { workspace = true }
clap = { workspace = true }
committable = { workspace = true }
derive_more = { workspace = true, features = ["debug"] }
digest = { workspace = true, features = ["rand_core"] }
displaydoc = { version = "0.2.5", default-features = false }
dyn-clone = "1.0.19"
either = { workspace = true }
futures = { workspace = true, features = ["alloc"] }
hotshot-utils = { workspace = true }
jf-pcs = { workspace = true }
jf-signature = { workspace = true, features = ["bls", "schnorr"] }
jf-utils = { workspace = true }
jf-vid = { workspace = true }
lazy_static = { workspace = true }
libp2p-identity = { workspace = true }
memoize = { workspace = true }
mnemonic = "1"
multiaddr = { workspace = true }
primitive-types = { workspace = true }
rand = { workspace = true }
rand_chacha = { workspace = true }
serde = { workspace = true }
serde-inline-default = { workspace = true }
serde_bytes = { workspace = true }
serde_json = { workspace = true }
sha2 = { workspace = true }
tagged-base64 = { workspace = true }
thiserror = { workspace = true }
time = { workspace = true }
tokio = { workspace = true }
toml = { workspace = true }
tracing = { workspace = true }
typenum = { workspace = true }
url = { workspace = true }
vbs = { workspace = true }
vec1 = { workspace = true }
vid = { workspace = true }
workspace-hack = { version = "0.1", path = "../workspace-hack" }
[features]
gpu-vid = ["jf-vid/gpu-vid"]
test-srs = ["jf-vid/test-srs"]