2021-12-28 11:51:13 -08:00
|
|
|
[package]
|
|
|
|
|
name = "plonky2_field"
|
2022-01-21 10:14:44 -08:00
|
|
|
description = "Finite field arithmetic"
|
2024-11-25 12:58:04 -05:00
|
|
|
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>"]
|
2024-02-19 07:35:51 -05:00
|
|
|
edition.workspace = true
|
|
|
|
|
license.workspace = true
|
|
|
|
|
homepage.workspace = true
|
|
|
|
|
repository.workspace = true
|
|
|
|
|
keywords.workspace = true
|
|
|
|
|
categories.workspace = true
|
2021-12-28 11:51:13 -08:00
|
|
|
|
|
|
|
|
[dependencies]
|
2024-02-19 07:35:51 -05:00
|
|
|
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
|
2024-11-25 12:58:04 -05:00
|
|
|
plonky2_util = { version = "1.0.0", path = "../util", default-features = false }
|
2024-02-19 07:35:51 -05:00
|
|
|
|
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"]
|
2024-08-27 16:56:19 -04:00
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
|
workspace = true
|