forked from matter-labs/zksync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (31 loc) · 921 Bytes
/
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
[package]
name = "prover"
version = "0.0.1"
edition = "2018"
[dependencies]
plasma = { path = "../plasma", version = "0.1.1" }
models = { path = "../models", version = "0.0.1" }
circuit = { path = "../circuit", version = "0.1.1"}
crypto_exports = { path = "../crypto_exports", version = "0.1.0" }
hex = "0.4"
rust-crypto = "0.2"
web3 = "0.10.0"
signal-hook = "0.1.8"
tokio = "0.1.18"
fnv = "1.0.6"
serde = "1.0.90"
serde_derive = "1.0.90"
serde_json = "1.0.0"
diesel = { version = "1.4.4", features = ["postgres", "serde_json", "r2d2", "chrono"] }
num = { version = "0.2", features = ["serde"] }
chrono = { version = "0.4", features = ["serde", "rustc-serialize"] }
log = "0.4"
env_logger = "0.6"
num-traits = "0.2"
actix-web = "1.0"
reqwest = { version = "0.10", features = ["blocking", "json"] }
failure = "0.1"
backoff = "0.1.6"
clap = "2.33.0"
ctrlc = { version = "3.1", features = ["termination"] }
rand = "0.7"