plonky2/field/Cargo.toml

32 lines
1.0 KiB
TOML
Raw Permalink Normal View History

[package]
name = "plonky2_field"
2022-01-21 10:14:44 -08:00
description = "Finite field arithmetic"
version = "1.0.0"
2023-01-30 08:51:33 -08:00
authors = ["Daniel Lubarov <daniel@lubarov.com>", "William Borgeaud <williamborgeaud@gmail.com>", "Jacqueline Nabaglo <j@nab.gl>", "Hamish Ivey-Law <hamish@ivey-law.name>"]
edition.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
keywords.workspace = true
categories.workspace = true
[dependencies]
anyhow = { workspace = true }
itertools = { workspace = true, features = ["use_alloc"] }
num = { workspace = true, features = ["alloc"] }
rand = { workspace = true, features = ["getrandom"] }
serde = { workspace = true, features = ["alloc"] }
static_assertions = { workspace = true }
unroll = { workspace = true }
# Local dependencies
plonky2_util = { version = "1.0.0", path = "../util", default-features = false }
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"]
[lints]
workspace = true