-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (24 loc) · 903 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
[package]
name = "halo2_solidity_verifier"
version = "0.1.0"
edition = "2021"
[dependencies]
#halo2_proofs = { git = "https://github.com/privacy-scaling-explorations/halo2", tag = "v0.3.0" }
halo2_proofs = { git = "https://github.com/powdr-labs/halo2.git", rev = "fb8087565115ff38da4074b9d1777e9a97222caa", features = ["circuit-params"] }
askama = { version = "0.12.0", features = ["config"], default-features = false }
hex = "0.4.3"
ruint = "1"
sha3 = "0.10"
itertools = "0.11.0"
# For feature = "evm"
revm = { version = "3.3.0", default-features = false, optional = true }
[dev-dependencies]
rand = "0.8.5"
revm = { version = "3.3.0", default-features = false }
halo2_maingate = { git = "https://github.com/privacy-scaling-explorations/halo2wrong", tag = "v2024_01_31", package = "maingate" }
[features]
default = []
evm = ["dep:revm"]
[[example]]
name = "separately"
required-features = ["evm"]