forked from matter-labs/zksync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (38 loc) · 1.47 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
[package]
name = "zksync_prover"
version = "1.0.0"
edition = "2018"
authors = ["The Matter Labs Team <[email protected]>"]
homepage = "https://zksync.io/"
repository = "https://github.com/matter-labs/zksync"
license = "Apache-2.0"
keywords = ["blockchain", "zksync"]
categories = ["cryptography"]
publish = false # We don't want to publish our binaries.
[dependencies]
zksync_state = { path = "../../lib/state", version = "1.0" }
zksync_types = { path = "../../lib/types", version = "1.0" }
zksync_circuit = { path = "../../lib/circuit", version = "1.0" }
zksync_crypto = { path = "../../lib/crypto", version = "1.0" }
zksync_config = { path = "../../lib/config", version = "1.0" }
zksync_utils = { path = "../../lib/utils", version = "1.0" }
zksync_prover_utils = { path = "../../lib/prover_utils", version = "1.0" }
zksync_prometheus_exporter = { path = "../../lib/prometheus_exporter", version = "1.0" }
hex = "0.4"
rust-crypto = "0.2"
web3 = "0.18.0"
tokio = { version = "1", features = ["full"] }
async-trait = "0.1"
futures = "0.3"
vlog = { path = "../../lib/vlog", version = "1.0" }
serde = "1.0.90"
serde_json = "1.0.0"
num = { version = "0.3.1", features = ["serde"] }
chrono = { version = "0.4", features = ["serde", "rustc-serialize"] }
reqwest = { version = "0.11", features = ["blocking", "json"] }
jsonwebtoken = "7"
anyhow = "1.0"
backoff = { version = "0.3.0", features = ["tokio"] }
structopt = "0.3.20"
ctrlc = { version = "3.1", features = ["termination"] }
metrics = "0.17"