mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-01-02 13:53:07 +00:00
* Do not export allocator * Make sure to use jemalloc in all downstream tests * Update readme * Remove test jemalloc boilerplate * One more * Fix clippies * One more * Clippy Co-authored-by: Daniel Lubarov <daniel@lubarov.com>
27 lines
584 B
TOML
27 lines
584 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]
|
|
plonky2 = { path = "../plonky2" }
|
|
plonky2_util = { path = "../util" }
|
|
starky = { path = "../starky" }
|
|
anyhow = "1.0.40"
|
|
env_logger = "0.9.0"
|
|
itertools = "0.10.0"
|
|
log = "0.4.14"
|
|
rand = "0.8.4"
|
|
rand_chacha = "0.3.1"
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.3.5"
|
|
|
|
[[bench]]
|
|
name = "lookup_permuted_cols"
|
|
harness = false
|
|
|
|
[target.'cfg(not(target_env = "msvc"))'.dev-dependencies]
|
|
jemallocator = "0.3.2"
|