plonky2/starky/Cargo.toml

22 lines
673 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", "std", "timing"]
2022-09-07 15:09:56 -07:00
parallel = ["plonky2/parallel", "maybe_rayon/parallel"]
std = ["anyhow/std", "plonky2/std"]
timing = ["plonky2/timing"]
2022-07-24 17:47:14 -04:00
[dependencies]
anyhow = { version = "1.0.40", default-features = false }
itertools = { version = "0.10.0", default-features = false }
log = { version = "0.4.14", default-features = false }
maybe_rayon = { path = "../maybe_rayon", default-features = false }
plonky2 = { path = "../plonky2", default-features = false }
[dev-dependencies]
env_logger = { version = "0.9.0", default-features = false }