-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
23 lines (20 loc) · 945 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
[package]
name = "eth-proof"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ethers = "2.0.7"
tokio = { version = "1", features = ["full"] }
anyhow = "1.0.71"
plonky2 = "0.1.3"
plonky2_evm = { git = "https://github.com/mir-protocol/plonky2", branch = "prove_historical_blocks" }
flexi_logger = { version = "0.25.1", features = ["async"] }
eth_trie_utils = { git = "https://github.com/mir-protocol/eth_trie_utils", branch = "williams_terrible_code" }
hex = "0.4.3"
regex = "1.9"
rand = "0.8.4"
[patch.crates-io]
#plonky2 = { git = "https://github.com/mir-protocol/plonky2.git", rev = "6fa59d204fbdf780c02bce41edc1144f436e49e1" }
#plonky2 = { git = "https://github.com/mir-protocol/plonky2.git", rev = "202985b24f79b354cfdfa2e5c5288e5fbc3f1a41" }
plonky2 = { git = "https://github.com/mir-protocol/plonky2", branch = "prove_historical_blocks" }