-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
37 lines (32 loc) · 880 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "plonky2_ecgfp5"
version = "0.1.0"
edition = "2021"
authors = ["Sebastien La Duca <[email protected]>"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/Sladuca/plonky2_ecgfp5"
categories = ["cryptography"]
description = "plonky2 gadgets for EcGFp5 curve and base field arithmetic"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
plonky2 = "0.1.1"
plonky2_field = "0.1.0"
plonky2_ecdsa = "0.1.0"
plonky2_u32 = "0.1.0"
num = "0.4"
itertools = "0.10"
serde = "1"
rand = { version = "0.8.5", default-features = false, features = ["getrandom"] }
[dev-dependencies]
rand = { version = "0.8.5", features = ["min_const_gen"] }
anyhow = "1.0.51"
criterion = "0.4"
log = "0.4"
env_logger = "0.10"
[[bench]]
name = "scalar"
harness = false
[[bench]]
name = "curve"
harness = false