forked from EspressoSystems/espresso-network
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
76 lines (71 loc) · 2.5 KB
/
Copy pathCargo.toml
File metadata and controls
76 lines (71 loc) · 2.5 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
[workspace.package]
version = "0.1.0"
authors = ["Espresso Systems <hello@espressosys.com>"]
edition = "2021"
[workspace]
resolver = "2"
members = [
"contract-bindings",
"contracts/rust/adapter",
"contracts/rust/diff-test",
"contracts/rust/gen-vk-contract",
"hotshot-state-prover",
"sequencer",
"utils",
]
[workspace.dependencies]
anyhow = "^1.0"
ark-std = "0.4"
ark-bls12-381 = "0.4"
ark-bn254 = "0.4"
ark-ec = "0.4"
ark-ed-on-bn254 = "0.4"
ark-ff = "0.4"
ark-poly = "0.4"
ark-serialize = "0.4"
async-compatibility-layer = { git = "https://github.com/EspressoSystems/async-compatibility-layer", tag = "1.4.1", features = [
"logging-utils",
] }
async-std = "1.12.0"
async-trait = "0.1.77"
base64 = "0.22"
base64-bytes = "0.1"
clap = { version = "4.4", features = ["derive", "env"] }
cld = "0.5"
derive_more = "0.99.17"
ethers = { version = "2.0" }
futures = "0.3"
hotshot = { git = "https://github.com/EspressoSystems/hotshot", tag = "0.5.24" }
hotshot-orchestrator = { git = "https://github.com/EspressoSystems/hotshot", tag = "0.5.24" }
hotshot-stake-table = { git = "https://github.com/EspressoSystems/hotshot", tag = "0.5.24" }
hotshot-task = { git = "https://github.com/EspressoSystems/hotshot", tag = "0.5.24" }
hotshot-types = { git = "https://github.com/EspressoSystems/hotshot-types", tag = "0.1.1" }
hotshot-web-server = { git = "https://github.com/EspressoSystems/hotshot", tag = "0.5.24" }
hotshot-testing = { git = "https://github.com/EspressoSystems/hotshot", tag = "0.5.24" }
hotshot-query-service = { git = "https://github.com/EspressoSystems/hotshot-query-service", tag = "0.0.16" }
jf-plonk = { git = "https://github.com/EspressoSystems/jellyfish", tag = "0.4.1", features = [
"test-apis",
"test-srs",
] }
jf-primitives = { git = "https://github.com/EspressoSystems/jellyfish", tag = "0.4.1", features = [
"std",
"test-srs",
] }
jf-relation = { git = "https://github.com/EspressoSystems/jellyfish", tag = "0.4.1", features = [
"std",
] }
jf-utils = { git = "https://github.com/EspressoSystems/jellyfish", tag = "0.4.1" }
snafu = "0.7.4"
surf-disco = { git = "https://github.com/EspressoSystems/surf-disco", tag = "v0.4.6" }
tagged-base64 = { git = "https://github.com/EspressoSystems/tagged-base64", tag = "0.3.4" }
tide-disco = { git = "https://github.com/EspressoSystems/tide-disco", tag = "v0.4.6" }
tracing = "0.1"
trait-variant = "0.1"
bytesize = "1.3"
itertools = "0.12"
rand_chacha = "0.3"
rand_distr = "0.4"
serde = { version = "1.0.195", features = ["derive"] }
toml = "0.8"
url = "2.3"
zeroize = "1.7"