mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-01-02 13:53:07 +00:00
18 lines
909 B
TOML
18 lines
909 B
TOML
[package]
|
|
name = "plonky2_field"
|
|
description = "Finite field arithmetic"
|
|
version = "0.1.0"
|
|
license = "MIT OR Apache-2.0"
|
|
authors = ["Daniel Lubarov <daniel@lubarov.com>", "William Borgeaud <williamborgeaud@gmail.com>", "Jacqueline Nabaglo <j@nab.gl>", "Hamish Ivey-Law <hamish@ivey-law.name>"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
anyhow = { version = "1.0.40", default-features = false }
|
|
itertools = { version = "0.10.0", default-features = false, features = ["use_alloc"] }
|
|
num = { version = "0.4", default-features = false, features = ["alloc", "rand"] }
|
|
plonky2_util = { version = "0.1.0", default-features = false }
|
|
rand = { version = "0.8.5", default-features = false, features = ["getrandom"] }
|
|
serde = { version = "1.0", default-features = false, features = ["alloc", "derive"] }
|
|
static_assertions = { version = "1.1.0", default-features = false }
|
|
unroll = { version = "0.1.5", default-features = false }
|