coreutils/src/uu/numfmt/Cargo.toml

29 lines
796 B
TOML
Raw Normal View History

2017-10-22 07:57:49 +00:00
[package]
name = "uu_numfmt"
2021-07-11 16:03:11 +00:00
version = "0.0.7"
authors = ["uutils developers"]
license = "MIT"
description = "numfmt ~ (uutils) reformat NUMBER"
homepage = "https://github.com/uutils/coreutils"
repository = "https://github.com/uutils/coreutils/tree/master/src/uu/numfmt"
keywords = ["coreutils", "uutils", "cross-platform", "cli", "utility"]
categories = ["command-line-utilities"]
edition = "2018"
2017-10-22 07:57:49 +00:00
[lib]
path = "src/numfmt.rs"
2017-10-22 07:57:49 +00:00
[dependencies]
clap = { version = "2.33", features = ["wrap_help"] }
2021-07-11 16:03:11 +00:00
uucore = { version=">=0.0.9", package="uucore", path="../../uucore" }
2021-07-11 19:04:11 +00:00
uucore_procs = { version=">=0.0.6", package="uucore_procs", path="../../uucore_procs" }
2017-10-22 07:57:49 +00:00
[[bin]]
name = "numfmt"
path = "src/main.rs"
[package.metadata.cargo-udeps.ignore]
# Necessary for "make all"
normal = ["uucore_procs"]