-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
48 lines (42 loc) · 1.12 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
47
48
[package]
name = "rust-clacc"
version = "3.6.0"
authors = ["John Driscoll <[email protected]>"]
description = "Rust implementanion of a CL universal accumulator"
repository = "https://github.com/johnoliverdriscoll/rust-clacc"
documentation = "https://docs.rs/rust-clacc"
license = "MIT"
keywords = ["crypto", "cryptography", "accumulator", "gmp"]
categories = [
"algorithms",
"cryptography",
"data-structures",
"embedded"
]
edition = "2021"
[lib]
name = "clacc"
path = "src/lib.rs"
[[bench]]
name = "bench"
path = "src/bench.rs"
harness = false
[features]
default = ["bigint"]
gmp = ["dep:rust-gmp"]
bigint = ["dep:num-bigint", "dep:num-integer", "dep:num-modular", "num-modular/num-bigint"]
[dependencies]
num-bigint = {version = "0.4.4", optional = true}
num-integer = {version = "0.1.45", optional = true}
num-modular = {version = "0.5.1", optional = true}
rust-gmp = {version = "0.5.0", optional = true}
sha3 = "0.10.8"
[dev-dependencies]
criterion = "0.5.1"
crossbeam = "0.8.2"
num_cpus = "1.16.0"
num-prime = "0.4.3"
rand = "0.8.5"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]