forked from scroll-tech/zkevm-circuits
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
26 lines (22 loc) · 856 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
[package]
name = "mpt-zktrie"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
halo2_proofs = { git = "https://github.com/privacy-scaling-explorations/halo2.git", tag = "v2023_02_02" }
mpt-circuits = { package = "halo2-mpt-circuits", git = "https://github.com/scroll-tech/mpt-circuit.git", branch = "scroll-dev-0411" }
zktrie = { git = "https://github.com/scroll-tech/zktrie.git", branch = "scroll-dev-0226", features = ["dual_codehash"] }
bus-mapping = { path = "../bus-mapping" }
eth-types = { path = "../eth-types" }
lazy_static = "1.4"
num-bigint = { version = "0.4" }
log = "0.4"
hex = "0.4"
[dev-dependencies]
env_logger = "0.9"
serde = {version = "1", features = ["derive"] }
serde_json = "1"
[features]
default = []