plonky2/field/Cargo.toml

20 lines
441 B
TOML
Raw Normal View History

[package]
name = "plonky2_field"
2022-01-21 10:14:44 -08:00
description = "Finite field arithmetic"
version = "0.1.0"
edition = "2021"
2022-08-06 11:35:32 -04:00
[features]
default = ["rand"]
rand = ["dep:rand"]
[dependencies]
plonky2_util = { path = "../util" }
anyhow = "1.0.40"
itertools = "0.10.0"
num = { version = "0.4", features = [ "rand" ] }
2022-08-06 11:35:32 -04:00
rand = { optional = true, version = "0.8.4" }
serde = { version = "1.0", features = ["derive"] }
unroll = "0.1.5"
2022-03-04 09:34:31 +11:00
static_assertions = "1.1.0"