-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (28 loc) · 734 Bytes
/
Copy pathCargo.toml
File metadata and controls
33 lines (28 loc) · 734 Bytes
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
[package]
name = "swifft"
version = "0.1.0"
edition = "2021"
rust-version = "1.70"
description = "PoC Rust implementation of the SWIFFT hash function"
readme = "README.md"
repository = "https://github.com/cyberbono3/swifft"
license = "MIT OR Apache-2.0"
keywords = ["crypto", "hash", "swifft"]
categories = ["cryptography"]
[features]
default = []
# Optional feature flags for optimizations/parallelism.
parallel = ["dep:rayon"]
simd = []
[dependencies]
rayon = { version = "1", optional = true }
[dev-dependencies]
proptest = "1"
criterion = { version = "0.5", default-features = false }
[dev-dependencies.cargo-husky]
version = "1"
default-features = false
features = ["user-hooks"]
[[bench]]
name = "compress"
harness = false