2022-01-26 00:09:29 -08:00
|
|
|
[package]
|
|
|
|
|
name = "starky"
|
|
|
|
|
description = "Implementation of STARKs"
|
2023-02-25 08:55:55 -08:00
|
|
|
version = "0.1.1"
|
2023-01-30 08:51:33 -08:00
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
|
authors = ["Daniel Lubarov <daniel@lubarov.com>", "William Borgeaud <williamborgeaud@gmail.com>"]
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
repository = "https://github.com/mir-protocol/plonky2"
|
|
|
|
|
keywords = ["cryptography", "STARK", "FRI"]
|
|
|
|
|
categories = ["cryptography"]
|
2022-01-26 00:09:29 -08:00
|
|
|
edition = "2021"
|
|
|
|
|
|
2022-07-24 17:47:14 -04:00
|
|
|
[features]
|
2022-11-04 16:04:10 -07:00
|
|
|
default = ["parallel", "std", "timing"]
|
2023-01-30 08:51:33 -08:00
|
|
|
parallel = ["plonky2/parallel", "plonky2_maybe_rayon/parallel"]
|
2022-11-04 16:04:10 -07:00
|
|
|
std = ["anyhow/std", "plonky2/std"]
|
|
|
|
|
timing = ["plonky2/timing"]
|
2022-07-24 17:47:14 -04:00
|
|
|
|
2022-01-26 00:09:29 -08:00
|
|
|
[dependencies]
|
2022-11-04 16:04:10 -07:00
|
|
|
anyhow = { version = "1.0.40", default-features = false }
|
|
|
|
|
itertools = { version = "0.10.0", default-features = false }
|
|
|
|
|
log = { version = "0.4.14", default-features = false }
|
2023-01-30 08:51:33 -08:00
|
|
|
plonky2_maybe_rayon = { version = "0.1.0", default-features = false }
|
2023-02-25 08:55:55 -08:00
|
|
|
plonky2 = { version = "0.1.2", default-features = false }
|
2022-11-04 16:04:10 -07:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
|
env_logger = { version = "0.9.0", default-features = false }
|