summaryrefslogtreecommitdiffstats
path: root/src/uu/cut/Cargo.toml
blob: 9a4a0b950d78965db86186706d09e9a1b9f2acb3 (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_cut"
version = "0.0.17"
authors = ["uutils developers"]
license = "MIT"
description = "cut ~ (uutils) display byte/field columns of input lines"

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

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

[dependencies]
clap = { version = "4.0", features = ["wrap_help", "cargo"] }
uucore = { version=">=0.0.17", package="uucore", path="../../uucore" }
memchr = "2"
bstr = "1.0"
atty = "0.2"

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