2022-01-26 00:09:29 -08:00
|
|
|
[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"
|
|
|
|
|
env_logger = "0.9.0"
|
2022-03-16 17:37:34 -07:00
|
|
|
itertools = "0.10.0"
|
2022-01-26 00:09:29 -08:00
|
|
|
log = "0.4.14"
|
2022-11-03 11:41:12 -07:00
|
|
|
plonky2 = { path = "../plonky2" }
|
|
|
|
|
plonky2_util = { path = "../util" }
|
2022-02-04 16:50:57 -08:00
|
|
|
rand = "0.8.4"
|
|
|
|
|
rand_chacha = "0.3.1"
|
2022-11-03 11:41:12 -07:00
|
|
|
starky = { path = "../starky" }
|
2022-03-16 17:37:34 -07:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
|
criterion = "0.3.5"
|
|
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
|
name = "lookup_permuted_cols"
|
|
|
|
|
harness = false
|
2022-05-03 13:16:53 -07:00
|
|
|
|
|
|
|
|
[target.'cfg(not(target_env = "msvc"))'.dev-dependencies]
|
|
|
|
|
jemallocator = "0.3.2"
|