[package] name = "plonky2_field" description = "Finite field arithmetic" version = "0.1.0" edition = "2021" [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" ] } rand = { optional = true, version = "0.8.4" } serde = { version = "1.0", features = ["derive"] } unroll = "0.1.5" static_assertions = "1.1.0"