mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-01-07 08:13:11 +00:00
* Update prover logic * Add helper method for CTL data * Some cleanup * Update some methods * Fix * Some more fixes * More tweaks * Final * Leverage starky crate * Additional tweaks * Cleanup * More cleanup * Fix * Cleanup imports * Fix * Final tweaks * Cleanup and hide behind debug_assertions attribute * Clippy * Fix no-std * Make wasm compatible * Doc and remove todo * API cleanup and remove TODO * Add Debug impls * Add documentation for public items * Feature-gate alloc imports * Import method from starky instead * Add simple crate and module documentation * Apply comments * Add lib level documentation * Add test without lookups * Fix starks without logup * Cleanup * Some more cleanup * Fix get_challenges for non-lookup STARKs * Add additional config methods and tests * Apply comments * More comments
36 lines
1.5 KiB
TOML
36 lines
1.5 KiB
TOML
[package]
|
|
name = "starky"
|
|
description = "Implementation of STARKs"
|
|
version = "0.1.2"
|
|
license = "MIT OR Apache-2.0"
|
|
authors = ["Daniel Lubarov <daniel@lubarov.com>", "William Borgeaud <williamborgeaud@gmail.com>"]
|
|
readme = "README.md"
|
|
repository = "https://github.com/0xPolygonZero/plonky2"
|
|
keywords = ["cryptography", "STARK", "FRI"]
|
|
categories = ["cryptography"]
|
|
edition = "2021"
|
|
|
|
[features]
|
|
default = ["parallel", "std", "timing"]
|
|
parallel = ["plonky2/parallel", "plonky2_maybe_rayon/parallel"]
|
|
std = ["anyhow/std", "plonky2/std"]
|
|
timing = ["plonky2/timing"]
|
|
|
|
[dependencies]
|
|
ahash = { version = "0.8.3", default-features = false, features = ["compile-time-rng"] } # NOTE: Be sure to keep this version the same as the dependency in `hashbrown`.
|
|
anyhow = { version = "1.0.40", default-features = false }
|
|
hashbrown = { version = "0.14.0", default-features = false, features = ["ahash", "serde"] } # NOTE: When upgrading, see `ahash` dependency.
|
|
itertools = { version = "0.11.0", default-features = false }
|
|
log = { version = "0.4.14", default-features = false }
|
|
num-bigint = { version = "0.4.3", default-features = false }
|
|
plonky2_maybe_rayon = { path = "../maybe_rayon", default-features = false }
|
|
plonky2 = { path = "../plonky2", default-features = false }
|
|
plonky2_util = { path = "../util", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
env_logger = { version = "0.9.0", default-features = false }
|
|
|
|
# Display math equations properly in documentation
|
|
[package.metadata.docs.rs]
|
|
rustdoc-args = ["--html-in-header", ".cargo/katex-header.html"]
|