-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
40 lines (34 loc) · 836 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
38
39
40
[package]
name = "bromberg_sl2"
description = "Cayley hashing as in 'Navigating in the Cayley Graph of SL₂(𝔽ₚ)'"
version = "0.6.0"
authors = ["Ben Weinstein-Raun <[email protected]>"]
edition = "2018"
license = "CC0-1.0"
repository = "https://github.com/benwr/bromberg_sl2"
categories = ["cryptography", "algorithms", "no-std"]
keywords = ["hashing", "sl2", "homomorphic", "monoidal", "tillich-zemor"]
[features]
default = ["std"]
std = ["rayon"]
[profile.release]
lto = true
opt-level = 3
codegen-units = 1
[profile.bench]
lto = true
opt-level = 3
codegen-units = 1
[dependencies]
digest = "0.9.0"
lazy_static = "^1.4"
rayon = { version = "1.5.1", optional = true }
seq-macro = "^0.2"
[dev-dependencies]
criterion = "0.3"
num-bigint = "0.3"
quickcheck = "0.9"
sha3 = "0.9"
[[bench]]
name = "compare_with_sha"
harness = false