plonky2/system_zero/Cargo.toml
BGluth b34b3875f7 Removed unused deps unovered by cargo-udeps
Some deps were moved to `[dev-dependencies]`.
2022-12-12 18:23:22 -07:00

27 lines
585 B
TOML

[package]
name = "system_zero"
description = "A VM whose execution can be verified with STARKs; designed for proving Ethereum transactions"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1.0.40"
itertools = "0.10.0"
log = "0.4.14"
plonky2 = { path = "../plonky2" }
plonky2_util = { path = "../util" }
rand = "0.8.4"
rand_chacha = "0.3.1"
starky = { path = "../starky" }
[dev-dependencies]
criterion = "0.4.0"
env_logger = "0.10.0"
[[bench]]
name = "lookup_permuted_cols"
harness = false
[target.'cfg(not(target_env = "msvc"))'.dev-dependencies]
jemallocator = "0.5.0"