forked from debris/tiny-keccak
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
89 lines (71 loc) · 1.76 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[package]
edition = "2018"
description = "An implementation of Keccak derived functions."
homepage = "https://github.com/debris/tiny-keccak"
documentation = "https://docs.rs/tiny-keccak/"
repository = "https://github.com/debris/tiny-keccak"
license = "CC0-1.0"
name = "tiny-keccak"
version = "2.0.2"
authors = ["debris <marek.kotewicz@gmail.com>"]
keywords = ["hash", "sha3", "keccak", "crypto", "kangarootwelve"]
categories = ["cryptography", "no-std"]
[dependencies]
crunchy = "0.2.2"
[profile.dev]
opt-level = 3 # Controls the --opt-level the compiler builds with
debug = false # Controls whether the compiler passes `-g`
[profile.test]
opt-level = 3 # Controls the --opt-level the compiler builds with
debug = false # Controls whether the compiler passes `-g`
[workspace]
members = ["comparison"]
[badges]
travis-ci = { repository = "debris/tiny-keccak", branch = "master"}
[features]
default = []
cshake = []
fips202 = ["keccak", "shake", "sha3"]
k12 = []
keccak = []
kmac = ["cshake"]
parallel_hash = ["cshake"]
sha3 = []
shake = []
sp800 = ["cshake", "kmac", "tuple_hash"]
tuple_hash = ["cshake"]
[[test]]
name = "keccak"
required-features = ["keccak"]
[[test]]
name = "cshake"
required-features = ["cshake"]
[[test]]
name = "tuple_hash"
required-features = ["tuple_hash"]
[[test]]
name = "kangaroo"
required-features = ["k12"]
[[test]]
name = "sha3"
required-features = ["sha3"]
[[test]]
name = "shake"
required-features = ["shake"]
[[test]]
name = "kmac"
required-features = ["kmac"]
[[test]]
name = "parallel_hash"
required-features = ["parallel_hash"]
[[bench]]
name = "keccak"
required-features = ["keccak"]
[[bench]]
name = "kangaroo"
required-features = ["k12"]
[[example]]
name = "sha3"
required-features = ["sha3"]
[package.metadata.docs.rs]
all-features = true