-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (31 loc) · 884 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
[package]
name = "s3id"
version = "0.1.0"
authors = ["Sebastian Ramacher"]
license = "Apache-2.0 OR MIT"
edition = "2021"
[dependencies]
rand = "0.8"
rayon = "1"
sha2 = { version = "0.10", default-features = false, features = ["std"] }
sha3 = { version = "0.10", default-features = false, features = ["std", "asm"] }
thiserror = "2"
groth-sahai = { git = "https://github.com/jdwhite48/groth-sahai-rs", rev = "cc0c3f023efb68c07e5a9d2da9fc9ca588f05698" }
ark-bls12-381 = { version = "0.5" }
ark-ec = { version = "0.5", default-features = false }
ark-ff = { version = "0.5", default-features = false }
ark-serialize = { version = "0.5", default-features = false }
rand_chacha = { version = "0.3" }
[dev-dependencies]
criterion = "0.5"
num = "0.4"
subtle = "2"
[[bench]]
name = "atact"
harness = false
[[bench]]
name = "s3id"
harness = false
[profile.bench]
lto = true
opt-level = 3