-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
32 lines (27 loc) · 807 Bytes
/
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
[package]
name = "kangarootwelve"
version = "0.1.2"
edition = "2021"
authors = ["Anjan Roy <hello@itzmeanjan.in>"]
description = "BlaKE12: Blazing-fast KEccak on 12 rounds"
documentation = "https://github.com/itzmeanjan/kangarootwelve"
readme = "README.md"
repository = "https://github.com/itzmeanjan/kangarootwelve.git"
license = "MIT"
keywords = ["keccak", "xof", "turboshake", "kangarootwelve", "k12"]
categories = ["cryptography"]
[dependencies]
turboshake = { version = "=0.1.4", features = ["dev"] }
rayon = { version = "=1.7.0", optional = true }
num_cpus = { version = "=1.15.0", optional = true }
[features]
multi_threaded = ["dep:rayon", "dep:num_cpus"]
[dev-dependencies]
hex = "0.4.3"
criterion = "0.4.0"
rand = "0.8.5"
[lib]
bench = false
[[bench]]
name = "kangarootwelve"
harness = false