plonky2/starky/Cargo.toml

19 lines
375 B
TOML
Raw Normal View History

[package]
name = "starky"
description = "Implementation of STARKs"
version = "0.1.0"
edition = "2021"
2022-07-24 17:47:14 -04:00
[features]
default = ["parallel"]
parallel = ["maybe_rayon/parallel"]
[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"
2022-07-24 17:47:14 -04:00
maybe_rayon = { path = "../maybe_rayon"}