plonky2/maybe_rayon/Cargo.toml

21 lines
505 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"
version = "0.2.0"
edition.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
keywords.workspace = true
categories.workspace = true
2022-07-21 16:59:13 -04:00
[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"]