mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-01-03 06:13:07 +00:00
- Previously refered to specific `crates.io` versions. - Motivation for this is to allow external projects to be able use specific revisions of this repo. Without this, a `[patch]` section is almost always required in the external project in order to force the internal plonky2 sub-crates to the same version, an approach which comes with its own issues.
18 lines
908 B
TOML
18 lines
908 B
TOML
[package]
|
|
name = "plonky2_field"
|
|
description = "Finite field arithmetic"
|
|
version = "0.1.1"
|
|
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.11.0", default-features = false, features = ["use_alloc"] }
|
|
num = { version = "0.4", default-features = false, features = ["alloc", "rand"] }
|
|
plonky2_util = { path = "../util", 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 }
|