mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-01-02 13:53:07 +00:00
20 lines
441 B
TOML
20 lines
441 B
TOML
[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"
|