[package]
edition = "2024"
name = "p3-util"
version = "0.4.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A collection of utility functions and tools for low-level operations, such as bit manipulation and array transformations."
homepage = "https://github.com/Plonky3/Plonky3"
readme = false
keywords = [
"cryptography",
"SNARK",
"PLONK",
"FRI",
"plonky3",
]
categories = ["cryptography::cryptocurrencies"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Plonky3/Plonky3"
resolver = "2"
[features]
parallel = ["rayon"]
[lib]
name = "p3_util"
path = "src/lib.rs"
[[bench]]
name = "bit_reverse"
path = "benches/bit_reverse.rs"
harness = false
[[bench]]
name = "transpose"
path = "benches/transpose.rs"
harness = false
[dependencies.rayon]
version = "1.11.0"
optional = true
[dependencies.serde]
version = "1.0"
default-features = false
[dependencies.transpose]
version = "0.2"
[dev-dependencies.criterion]
version = "0.8"
[dev-dependencies.proptest]
version = "1.8"
[dev-dependencies.rand]
version = "0.9.0"
features = ["small_rng"]
default-features = false
[dev-dependencies.serde_json]
version = "1.0.113"
[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"