2022-01-26 00:09:29 -08:00
|
|
|
[package]
|
|
|
|
|
name = "starky"
|
|
|
|
|
description = "Implementation of STARKs"
|
2025-01-30 15:15:15 -05:00
|
|
|
version = "1.0.2"
|
2023-01-30 08:51:33 -08:00
|
|
|
authors = ["Daniel Lubarov <daniel@lubarov.com>", "William Borgeaud <williamborgeaud@gmail.com>"]
|
|
|
|
|
readme = "README.md"
|
2024-02-19 07:35:51 -05:00
|
|
|
edition.workspace = true
|
|
|
|
|
license.workspace = true
|
|
|
|
|
homepage.workspace = true
|
|
|
|
|
repository.workspace = true
|
|
|
|
|
keywords.workspace = true
|
|
|
|
|
categories.workspace = true
|
2022-01-26 00:09:29 -08:00
|
|
|
|
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]
|
2024-02-19 07:35:51 -05:00
|
|
|
ahash = { workspace = true }
|
|
|
|
|
anyhow = { workspace = true }
|
|
|
|
|
hashbrown = { workspace = true }
|
|
|
|
|
itertools = { workspace = true }
|
|
|
|
|
log = { workspace = true }
|
2024-10-02 23:36:06 +05:30
|
|
|
serde = { workspace = true, features = ["rc"] }
|
2024-02-06 12:57:40 -05:00
|
|
|
num-bigint = { version = "0.4.3", default-features = false }
|
2024-02-19 07:35:51 -05:00
|
|
|
|
|
|
|
|
# Local dependencies
|
2025-01-30 15:15:15 -05:00
|
|
|
plonky2 = { version = "1.0.2", path = "../plonky2", default-features = false }
|
2024-11-25 12:58:04 -05:00
|
|
|
plonky2_maybe_rayon = { version = "1.0.0", path = "../maybe_rayon", default-features = false }
|
|
|
|
|
plonky2_util = { version = "1.0.0", path = "../util", default-features = false }
|
2022-11-04 16:04:10 -07:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
|
env_logger = { version = "0.9.0", default-features = false }
|
2024-01-12 17:07:18 +01:00
|
|
|
|
|
|
|
|
# Display math equations properly in documentation
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
|
rustdoc-args = ["--html-in-header", ".cargo/katex-header.html"]
|
2024-08-29 14:22:37 +02:00
|
|
|
cargo-args = ["--no-deps"]
|
2024-08-27 16:56:19 -04:00
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
|
workspace = true
|