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