-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
31 lines (26 loc) · 1011 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
[package]
name = "era-boojum-validator-cli"
version = "0.1.0"
edition = "2021"
[dependencies]
circuit_definitions = {git = "https://github.com/matter-labs/era-zkevm_test_harness.git", branch="v1.4.0"}
# circuit_definitions = { path = "../zkevm_test_harness/circuit_definitions"}
codegen = { git = "https://github.com/matter-labs/solidity_plonk_verifier.git", branch = "snark_wrapper" }
#codegen = { path = "../solidity_plonk_verifier/codegen" }
zksync_types = { git = "https://github.com/matter-labs/zksync-era.git", branch = "main", package = "zksync_types" }
hex = "*"
bincode = "*"
colored = "2.0"
serde_json = "*"
serde_repr = "0.1.17"
serde = {version = "1", features = ["derive"]}
clap = { version = "4.2.4", features = ["derive"] }
anyhow = "*"
reqwest = { version = "0.11", features = ["json"] }
tokio = { version = "1", features = ["full"] }
ethers = {version = "1", features = ["ws", "rustls"]}
sha3 = "*"
once_cell = "1.7"
primitive-types = "0.12.2"
gag = "1.0.0"
crypto = { path = "./crypto" }