-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
51 lines (46 loc) · 1.18 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
[package]
name = "checksums"
description = "Tool for making/verifying checksums of directory trees"
documentation = "https://rawcdn.githack.com/nabijaczleweli/checksums/doc/checksums/index.html"
repository = "https://github.com/nabijaczleweli/checksums"
readme = "README.md"
keywords = ["checksums", "checksum", "directory", "verification", "hash"]
categories = ["authentication", "filesystem"]
license = "MIT"
# Remember to also update in appveyor.yml
version = "0.9.0"
# Remember to also update in checksums.md
authors = ["nabijaczleweli <[email protected]>",
"Zachary Dremann <[email protected]>",
"Chris Moore",
"Daniel Alley <[email protected]>",
"Paul Bragin <[email protected]>"]
exclude = ["*.enc"]
[dependencies]
futures-cpupool = "0.1"
once_cell = "1.7"
tabwriter = "1.2"
whirlpool = "0.9"
num_cpus = "1.13"
futures = "0.1"
walkdir = "2.3"
blake2 = "0.9"
blake3 = "1.2"
crc32c = "0.6"
shaman = "0.1"
blake = "2.0"
crc16 = "0.4"
regex = "1.5"
clap = "2.33"
crc8 = "0.1"
md-5 = "0.9"
crc = "1.8"
pbr = "1.0"
md6 = "2.0"
[dependencies.tiny-keccak]
version = "2.0"
features = ["sha3"]
[[bin]]
name = "checksums"
test = false
doc = false