-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (40 loc) · 1.05 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
[package]
name = "turboshake"
version = "0.2.0"
edition = "2021"
authors = ["Anjan Roy <[email protected]>"]
description = "A family of extendable output functions based on keccak-p[1600, 12] permutation"
documentation = "https://github.com/itzmeanjan/turboshake"
readme = "README.md"
repository = "https://github.com/itzmeanjan/turboshake.git"
license = "MIT"
keywords = ["cryptography", "keccak", "xof", "hashing", "turboshake"]
categories = ["cryptography"]
[features]
dev = []
simdx2 = []
simdx4 = []
[dependencies]
crunchy = "=0.2.2"
[dev-dependencies]
rand = "=0.8.5"
hex = "=0.4.3"
criterion = "=0.5.1"
test-case = "=3.2.1"
[target.'cfg(any(target_arch = "x86", target_arch = "x86_64", target_arch = "aarch64", target_arch = "loongarch64"))'.dev-dependencies]
criterion-cycles-per-byte = "=0.6.0"
[lib]
bench = false
[[bench]]
name = "keccak"
harness = false
required-features = ["dev"]
[[bench]]
name = "turboshake"
harness = false
[[example]]
name = "keccak"
required-features = ["dev"]
[[example]]
name = "simd_keccak"
required-features = ["dev", "simdx4"]