-
Notifications
You must be signed in to change notification settings - Fork 31
/
Cargo.toml
43 lines (37 loc) · 1000 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
41
42
43
[package]
name = "class_group"
version = "0.6.1"
authors = ["omershlo <[email protected]>"]
edition = "2018"
links = "libpari"
build = "build.rs"
description = "Rust library for building IQC: cryptography based on class groups (Cl) of imaginary quadratic orders"
license = "GPL-3.0"
repository = "https://github.com/ZenGo-X/class"
categories = ["cryptography"]
keywords = ["cryptography", "crypto", "libpari"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
bindgen = "0.50"
fs_extra = "1"
anyhow = "1"
[dependencies]
libc = "0.2.0"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
num-traits = "0.2"
curv-kzen = { version = "0.10", default-features = false }
sha2 = "0.9"
hmac = "0.11"
[dev-dependencies]
criterion = ">=0.2"
rug = "1.2.1"
sha2 = "0.9.1"
proptest = "0.10.1"
[features]
default = ["curv-kzen/rust-gmp-kzen"]
[[bench]]
name = "bench-vdf-class"
path = "benches/vdf/class_group.rs"
harness = false