-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (32 loc) · 1.22 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
[package]
name = "prover"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = {version = "1.0", features = ["derive"]}
toml = "0.7"
async-std = { version = "1.12", features = ["attributes", "unstable"] }
async-trait = "0.1"
futures = "0.3.28"
futures-util = "0.3.29"
env_logger = "0.10.0"
libp2p = { version = "0.53.2", features = ["async-std", "kad", "identify", "request-response", "cbor", "gossipsub", "mdns", "noise", "macros", "tcp", "yamux"] }
libp2p-quic = { version = "0.10.2", features = ["async-std"] }
num_enum = "0.6.1"
clap = { version = "4.3.21", features = ["derive"] }
uuid = { version = "1.4.1", features = ["v4", "fast-rng", "macro-diagnostics"] }
reqwest = "0.11"
home = "0.5.5"
bollard = "0.17"
tracing = "0.1.37"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
bincode = "1.3.3"
anyhow = "1.0.86"
risc0-zkvm = { version = "1.1.2", features = ["prove"] }
risc0-zkp = { version = "1.1.2", features = ["prove"] }
risc0-circuit-recursion = "1.1.2"
jocker = {path = "../jocker" }
comms = { path = "../comms" }
dstorage = { path = "../dstorage" }
chrono = { version = "0.4.38", features = ["serde"] }