mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-01-03 22:33:06 +00:00
19 lines
452 B
TOML
19 lines
452 B
TOML
[package]
|
|
name = "starky"
|
|
description = "Implementation of STARKs"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[features]
|
|
default = ["parallel"]
|
|
parallel = ["plonky2/parallel", "maybe_rayon/parallel"]
|
|
|
|
[dependencies]
|
|
plonky2 = { path = "../plonky2", default-features = false, features = ["rand", "timing"] }
|
|
plonky2_util = { path = "../util" }
|
|
maybe_rayon = { path = "../maybe_rayon"}
|
|
anyhow = "1.0.40"
|
|
env_logger = "0.9.0"
|
|
itertools = "0.10.0"
|
|
log = "0.4.14"
|