forked from privacy-ethereum/halo2-solidity-verifier
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (25 loc) · 730 Bytes
/
Cargo.toml
File metadata and controls
31 lines (25 loc) · 730 Bytes
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 = "halo2_solidity_verifier"
version = "0.1.0"
edition = "2021"
[dependencies]
halo2_proofs = { git = "https://github.com/summa-dev/halo2"}
askama = { version = "0.12.0", features = ["config"], default-features = false }
hex = "0.4.3"
ruint = "1"
sha3 = "0.10"
itertools = "0.11.0"
# Remove when `vk.transcript_repr()` is ready for usage.
blake2b_simd = "1"
# For feature = "evm"
revm = { version = "3.3.0", optional = true }
[dev-dependencies]
rand = "0.8.5"
revm = "3.3.0"
halo2_maingate = { git = "https://github.com/privacy-scaling-explorations/halo2wrong", tag = "v2023_04_20", package = "maingate" }
[features]
default = []
evm = ["dep:revm"]
[[example]]
name = "separately"
required-features = ["evm"]