plonky2/starky/Cargo.toml

44 lines
1.3 KiB
TOML
Raw Permalink Normal View History

[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"
edition.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
keywords.workspace = true
categories.workspace = true
2022-07-24 17:47:14 -04:00
[features]
default = ["parallel", "std", "timing"]
2023-01-30 08:51:33 -08:00
parallel = ["plonky2/parallel", "plonky2_maybe_rayon/parallel"]
std = ["anyhow/std", "plonky2/std"]
timing = ["plonky2/timing"]
2022-07-24 17:47:14 -04:00
[dependencies]
ahash = { workspace = true }
anyhow = { workspace = true }
hashbrown = { workspace = true }
itertools = { workspace = true }
log = { workspace = true }
serde = { workspace = true, features = ["rc"] }
num-bigint = { version = "0.4.3", default-features = false }
# Local dependencies
2025-01-30 15:15:15 -05:00
plonky2 = { version = "1.0.2", path = "../plonky2", default-features = false }
plonky2_maybe_rayon = { version = "1.0.0", path = "../maybe_rayon", default-features = false }
plonky2_util = { version = "1.0.0", path = "../util", default-features = false }
[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"]
cargo-args = ["--no-deps"]
[lints]
workspace = true