plonky2/maybe_rayon/Cargo.toml

17 lines
394 B
TOML
Raw Normal View History

2022-07-21 16:59:13 -04:00
[package]
2023-01-30 08:51:33 -08:00
name = "plonky2_maybe_rayon"
description = "Feature-gated wrapper around rayon"
license = "MIT OR Apache-2.0"
2023-07-31 16:31:22 -07:00
version = "0.1.1"
2022-07-21 16:59:13 -04:00
edition = "2021"
[features]
parallel = ["rayon"]
[dependencies]
rayon = { version = "1.5.3", optional = true }
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"]