-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (38 loc) · 959 Bytes
/
Cargo.toml
File metadata and controls
42 lines (38 loc) · 959 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
34
35
36
37
38
39
40
41
42
[package]
name = "hash-hunter"
version = "0.1.2"
edition = "2024"
authors = ["Andrew Sims, andrew.sims@dataforgesolutions.com"]
description = "Find files with specified hashes"
license = "MIT OR Apache-2.0"
repository = "https://github.com/Data-Forge-Solutions/hash-hunter"
homepage = "https://github.com/Data-Forge-Solutions/hash-hunter"
readme = "README.md"
keywords = ["security", "ioc", "hash", "malware-detection", "threat-detection"]
categories = [
"command-line-utilities",
"security",
"cryptography",
"filesystem",
]
default-run = "hashhunter"
[dependencies]
blake2 = "0.10"
blake3 = "1.5"
clap = { version = "4.5", features = ["derive"] }
digest = "0.10"
hex = "0.4"
indicatif = { version = "0.18.3", features = ["rayon"] }
md-5 = "0.10"
rayon = "1.10"
sha1 = "0.10"
sha2 = "0.10"
sha3 = "0.10"
walkdir = "2.5"
[dev-dependencies]
tempfile = "3.10"
[lints.clippy]
pedantic = "deny"
[[bin]]
name = "hashhunter"
path = "src/main.rs"