plonky2/ecdsa/Cargo.toml

18 lines
458 B
TOML
Raw Normal View History

2022-03-16 05:39:45 +01:00
[package]
name = "plonky2_ecdsa"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
plonky2 = { path = "../plonky2" }
plonky2_util = { path = "../util" }
plonky2_field = { path = "../field" }
2022-04-07 08:44:54 +02:00
plonky2_u32 = { path = "../u32" }
2022-03-16 05:39:45 +01:00
num = "0.4.0"
itertools = "0.10.0"
rayon = "1.5.1"
serde = { version = "1.0", features = ["derive"] }
anyhow = "1.0.40"
2022-03-16 05:44:02 +01:00
rand = "0.8.4"