-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
82 lines (78 loc) · 2.21 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[profile.release]
overflow-checks = true
[workspace]
resolver = "2"
members = [
"crates/common",
"crates/compiler",
"crates/delegator",
"crates/executor",
"crates/peer",
"crates/prover",
"crates/runner",
"crates/tests",
]
exclude = []
[workspace.package]
description = "A shared peer-to-peer network of Zero-Knowledge Provers"
edition = "2021"
homepage = "https://docs.zetina.iosis.tech/"
license-file = "LICENSE"
readme = "README.md"
repository = "https://github.com/iosis-tech/zetina"
version = "0.1.3"
[workspace.dependencies]
async-process = "2.2.0"
async-stream = "0.3.5"
bincode = "1.3"
cairo-proof-parser = { git = "https://github.com/Okm165/cairo-proof-parser", rev = "97a04bbee07330311b38d6f4cecfed3acb237626" }
cairo-vm = { git = "https://github.com/lambdaclass/cairo-vm.git", tag = "v1.0.0-rc3" }
futures = "0.3.30"
futures-core = "0.3.30"
futures-util = "0.3.30"
hex = "0.4.3"
itertools = "0.12.1"
libp2p = { version = "0.53.2", features = [
"ecdsa",
"tokio",
"gossipsub",
"kad",
"mdns",
"noise",
"macros",
"tcp",
"yamux",
"quic",
"serde",
] }
num-bigint = "0.4.4"
proptest = "1.4.0"
proptest-derive = "0.4.0"
rand = "0.8.5"
serde = "1.0.197"
serde_json = "1.0.115"
serde_with = "3.7.0"
starknet = "0.10.0"
starknet-crypto = "0.6.2"
strum = { version = "0.26", features = ["derive"] }
tempfile = "3.10.1"
thiserror = "1.0.58"
tokio = { version = "1.36", features = ["full"] }
tokio-util = "0.7.10"
tracing = "0.1.37"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tokio-stream = "0.1.15"
axum = "0.7.5"
hyper = { version = "1.0", features = [] }
hyper-util = { version = "0.1", features = ["tokio", "server-auto", "http1"] }
tower = { version = "0.4", features = ["util"] }
tower-http = { version = "0.5", features = ["timeout", "trace", "cors"] }
clap = { version = "4.0", features = ["derive"] }
zetina-common = { path = "crates/common" }
zetina-compiler = { path = "crates/compiler" }
zetina-delegator = { path = "crates/delegator" }
zetina-executor = { path = "crates/executor" }
zetina-peer = { path = "crates/peer" }
zetina-prover = { path = "crates/prover" }
zetina-runner = { path = "crates/runner" }
zetina-tests = { path = "crates/tests" }