[package]
edition = "2024"
name = "p3-circle"
version = "0.7.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A STARK proof system built around the unit circle of a finite field, based on the Circle STARKs paper."
homepage = "https://github.com/Plonky3/Plonky3"
readme = "README.md"
keywords = [
"cryptography",
"SNARK",
"PLONK",
"FRI",
"plonky3",
]
categories = ["cryptography::cryptocurrencies"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Plonky3/Plonky3"
resolver = "2"
[lib]
name = "p3_circle"
path = "src/lib.rs"
[[example]]
name = "lde"
path = "examples/lde.rs"
[[bench]]
name = "cfft"
path = "benches/cfft.rs"
harness = false
[dependencies.itertools]
version = "0.15.0"
features = ["use_alloc"]
default-features = false
[dependencies.p3-challenger]
version = "0.7.0"
[dependencies.p3-commit]
version = "0.7.0"
[dependencies.p3-dft]
version = "0.7.0"
[dependencies.p3-field]
version = "0.7.0"
[dependencies.p3-fri]
version = "0.7.0"
[dependencies.p3-matrix]
version = "0.7.0"
[dependencies.p3-maybe-rayon]
version = "0.7.0"
[dependencies.p3-util]
version = "0.7.0"
[dependencies.serde]
version = "1.0"
default-features = false
[dependencies.thiserror]
version = "2.0"
default-features = false
[dependencies.tracing]
version = "0.1.44"
features = ["attributes"]
default-features = false
[dev-dependencies.criterion]
version = "0.8"
[dev-dependencies.hashbrown]
version = "0.17.1"
[dev-dependencies.proptest]
version = "1.11"
features = ["std"]
default-features = false
[dev-dependencies.rand]
version = "0.10.1"
default-features = false
[dev-dependencies.tracing-forest]
version = "0.3.1"
features = [
"ansi",
"smallvec",
]
[dev-dependencies.tracing-subscriber]
version = "0.3.23"
features = [
"alloc",
"std",
"env-filter",
]
default-features = false
[lints.clippy]
cognitive_complexity = "allow"
match_bool = "warn"
needless_pass_by_value = "warn"
redundant_pub_crate = "allow"
semicolon_if_nothing_returned = "warn"
too_long_first_doc_paragraph = "allow"
transmute_undefined_repr = "allow"
tuple_array_conversions = "allow"
unused_peekable = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.rust]
rust_2024_incompatible_pat = "warn"
unused_must_use = "deny"
[lints.rust.rust_2018_idioms]
level = "deny"
priority = -1
[lints.rustdoc]
all = "warn"