]> code.octet-stream.net Git - hashgood/blob - Cargo.toml
Update deps and remove reliance on crossbeam
[hashgood] / Cargo.toml
1 [package]
2 name = "hashgood"
3 description = "Interactive CLI utility for verifying file checksums"
4 homepage = "https://github.com/thombles/hashgood"
5 repository = "https://github.com/thombles/hashgood"
6 version = "0.4.0"
7 authors = ["Thomas Karpiniec <tom.karpiniec@outlook.com>"]
8 edition = "2021"
9 license = "Apache-2.0"
10 readme = "README.md"
11
12 [dependencies]
13 structopt = "0.3.26"
14 hex = "0.4.3"
15 termcolor = "1.4"
16 sha2 = "0.10"
17 sha1 = "0.10"
18 md-5 = "0.10"
19
20 [dependencies.copypasta]
21 version = "0.8.1"
22 optional = true
23
24 [features]
25 paste = ["copypasta"]