-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
66 lines (58 loc) · 1.16 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
[package]
name = "hasher"
description = "Multithreaded simultaneous hashing utility"
version = "0.8.7"
edition = "2021"
readme = "README.md"
[lib]
name = "hasher"
path = "src/lib.rs"
[[bin]]
name = "hasher"
path = "src/main.rs"
[dependencies]
crc32fast = "1.4.2"
md2 = "0.10.2"
md4 = "0.10.2"
md-5 = "0.10.6"
sha1 = "0.10.6"
sha2 = "0.10.8"
sha3 = "0.10.8"
blake2 = "0.10.6"
belt-hash = "0.1.1"
whirlpool = "0.10.4"
tiger = "0.2.1"
streebog = "0.10.2"
ripemd = "0.1.3"
fsb = "0.1.3"
sm3 = "0.4.2"
gost94 = "0.10.4"
groestl = "0.10.1"
shabal = "0.4.1"
digest = "0.10.7"
hex = "0.4.3"
log = "0.4.22"
env_logger = "0.11.5"
walkdir = "2.5.0"
serde = "1.0.215"
serde_derive = "1.0.215"
serde_json = "1.0.132"
chrono = "0.4.38"
toml = "0.8.19"
clap-verbosity-flag = "2.2.2"
futures = "0.3.31"
flate2 = "1.0.35"
[dependencies.clap]
version = "4.5.20"
features = ["derive"]
[dependencies.tokio]
version = "1.41.1"
features = ["rt-multi-thread", "macros", "time", "fs", "io-util"]
[dependencies.sqlx]
version = "0.8.2"
features = ["sqlite", "runtime-async-std-rustls"]
[dependencies.reqwest]
version = "0.12.9"
features = ["stream", "rustls-tls"]
[dev-dependencies]
tempfile = "3.14.0"