summaryrefslogtreecommitdiffstats
path: root/src/uu/hashsum/Cargo.toml
blob: a75141e93f0409b298f0ebf27c89c9552c22ac54 (plain)
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
[package]
name = "uu_hashsum"
version = "0.0.18"
authors = ["uutils developers"]
license = "MIT"
description = "hashsum ~ (uutils) display or check input digests"

homepage = "https://github.com/uutils/coreutils"
repository = "https://github.com/uutils/coreutils/tree/main/src/uu/hashsum"
keywords = ["coreutils", "uutils", "cross-platform", "cli", "utility"]
categories = ["command-line-utilities"]
edition = "2021"

[lib]
path = "src/hashsum.rs"

[dependencies]
clap = { workspace=true }
uucore = { workspace=true }
memchr = { workspace=true }
regex = { workspace=true }
hex = { workspace=true }

[[bin]]
name = "hashsum"
path = "src/main.rs"