fri/Cargo.toml (32 lines of code) (raw):
[package]
name = "winter-fri"
version = "0.3.0"
description = "Implementation of FRI protocol for the Winterfell STARK prover/verifier"
authors = ["winterfell contributors"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/novifinancial/winterfell"
documentation = "https://docs.rs/winter-fri/0.3.0"
categories = ["cryptography", "no-std"]
keywords = ["crypto", "polynomial", "commitments"]
edition = "2021"
rust-version = "1.57"
[lib]
bench = false
[[bench]]
name = "prover"
harness = false
[[bench]]
name = "folding"
harness = false
[features]
concurrent = ["crypto/concurrent", "math/concurrent", "utils/concurrent", "std"]
default = ["std"]
std = ["crypto/std", "math/std", "utils/std"]
[dependencies]
crypto = { version = "0.3", path = "../crypto", package = "winter-crypto", default-features = false }
math = { version = "0.3", path = "../math", package = "winter-math", default-features = false }
utils = { version = "0.3", path = "../utils/core", package = "winter-utils", default-features = false }
[dev-dependencies]
criterion = "0.3"
rand-utils = { version = "0.3", path = "../utils/rand", package = "winter-rand-utils" }