forked from Electron-Labs/plonky2-crypto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (27 loc) · 896 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
[package]
name = "plonky2_crypto"
description = "Crypto gadgets for Plonky2"
version = "0.1.0"
license = "MIT OR Apache-2.0"
edition = "2021"
[dependencies]
anyhow = { version = "1.0.40", default-features = false }
plonky2 = { git = "https://github.com/metacraft-labs/plonky2/" }
plonky2_maybe_rayon = { version = "0.1" }
itertools = { version = "0.11.0", default-features = false }
num = { version = "0.4", default-features = false, features = ["rand"] }
serde = { version = "1.0", default-features = false, features = [
"derive",
"rc",
] }
serde_with = { version = "2.2.0", features = ["hex"] }
rayon = { version = "1.5.3" }
hex = { version = "0.4.3" }
rand = { version = "0.8.4", default-features = false }
proc-macro2 = "=1.0.79"
[dev-dependencies]
debug_print = { version = "1.0.0" }
sha2 = { version = "0.10.6" }
sha3 = { version = "0.10.6" }
serde_json = "1.0"
criterion = "0.3"