-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (42 loc) · 1.11 KB
/
Copy pathCargo.toml
File metadata and controls
46 lines (42 loc) · 1.11 KB
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
[package]
name = "quickdash"
description = "A modern alternative to QuickSFV using Rust."
repository = "https://github.com/iamtakingithard/QuickDash"
readme = "README.md"
keywords = ["cli", "hash", "verify"]
categories = ["authentication", "filesystem", "command-line-utilities"]
license = "Apache-2.0"
version = "0.7.0"
authors = ["cerda", "b1tzxd", "mjc", "taskylizard"]
edition = "2024"
[dependencies]
blake2 = "0.10.4"
blake3 = "1.3.1"
clap = { version = "4.4.10", features = ["derive"] }
crc32fast = "1.3.2"
indicatif = { version = "0.17.11", features = ["rayon"] }
md-5 = "0.10.1"
num_cpus = "1.13.1"
once_cell = "1.10.0"
rayon = "1.5.1"
regex = "1.5.5"
sha-1 = "0.10.0"
sha2 = "0.10.2"
sha3 = "0.10.1"
tabwriter = "1.2.1"
walkdir = "2.3.2"
whirlpool = "0.10.1"
xxhash-rust = { version = "0.8.4", features = ["xxh3", "xxh32", "xxh64"] }
[profile.release]
codegen-units = 1
debug = false
lto = true
# panic = 'abort'
[[bin]]
doc = false
name = "quickdash"
path = "src/main.rs"
test = false
[lib]
name = "quickdash"
path = "src/lib.rs"