-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
37 lines (33 loc) · 1.01 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
[package]
name = "fdh"
version = "0.7.3"
authors = ["phayes <[email protected]>"]
edition = "2018"
description = "Full Domain Hash (FDH) for extending the size of a hash digest to an arbitrary length"
license = "MIT OR Apache-2.0"
repository = "https://github.com/phayes/fdh-rs"
readme = "README.md"
keywords = ["hash", "crypto", "digest"]
categories = ["cryptography", "no-std"]
[dependencies]
digest = "0.9.0"
thiserror = { version = "1.0.22", optional = true }
num-bigint = { version = "0.6", optional = true, features = [
"zeroize"
], package = "num-bigint-dig" }
subtle = "2.3.0"
secret_integers = "0.1.6"
[dev-dependencies]
sha2 = "0.9.2"
sha-1 = "0.9.2"
sha3 = "0.9.1"
hex = "0.4.2"
num-traits = "0.2.14"
num-integer = "0.1.44"
[badges]
travis-ci = { repository = "phayes/fdh-rs", branch = "master" }
codecov = { repository = "phayes/fdh-rs", branch = "master", service = "github" }
maintenance = { status = "actively-developed" }
[features]
default = ["std"]
std = ["digest/std", "num-bigint", "thiserror"]