-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
46 lines (40 loc) · 1.08 KB
/
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
44
45
46
[package]
authors = ["The Hyperledger Anoncreds Contributors"]
description = "Hyperledger Anoncreds CL Signatures"
documentation = "https://docs.rs/anoncreds-clsignatures"
edition = "2021"
license = "Apache-2.0"
name = "anoncreds-clsignatures"
readme = "README.md"
repository = "https://github.com/hyperledger/anoncreds-clsignatures-rs"
version = "0.3.3"
rust-version = "1.65"
[lib]
crate-type = ["cdylib", "rlib"]
[features]
default = ["serde", "openssl_bn"]
openssl_bn = ["openssl"]
openssl_vendored = ["openssl_bn", "openssl/vendored"]
[dependencies]
amcl = "0.2"
glass_pumpkin = "1.7"
log = "0.4"
num-bigint = { version = "0.4", features = ["rand"] }
num-integer = "0.1.45"
num-traits = "0.2.19"
once_cell = "1"
openssl = { version = "0.10", optional = true }
rand = "0.8"
serde = { version = "1", optional = true, features = ["derive"] }
sha2 = "0.10"
[dev-dependencies]
serde_json = "1"
rmp-serde = "1"
[[bench]]
name = "cl"
harness = false
# speed up big numbers and prime generation for tests
[profile.test.package.num-bigint]
opt-level = 3
[profile.test.package.glass_pumpkin]
opt-level = 3