2022-05-04 20:57:07 +02:00
|
|
|
[package]
|
2022-05-18 10:32:14 -07:00
|
|
|
name = "plonky2_evm"
|
|
|
|
|
description = "Implementation of STARKs for the Ethereum Virtual Machine"
|
2022-05-04 20:57:07 +02:00
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
plonky2 = { path = "../plonky2" }
|
|
|
|
|
plonky2_util = { path = "../util" }
|
|
|
|
|
anyhow = "1.0.40"
|
|
|
|
|
env_logger = "0.9.0"
|
|
|
|
|
itertools = "0.10.0"
|
|
|
|
|
log = "0.4.14"
|
|
|
|
|
rayon = "1.5.1"
|
2022-05-12 20:38:11 +02:00
|
|
|
rand = "0.8.5"
|
2022-05-26 08:22:23 -07:00
|
|
|
rand_chacha = "0.3.1"
|
2022-06-03 11:32:19 -07:00
|
|
|
keccak-rust = { git = "https://github.com/npwardberkeley/keccak-rust" }
|