coreutils/src/uu/numfmt/Cargo.toml

24 lines
624 B
TOML
Raw Normal View History

2017-10-22 07:57:49 +00:00
[package]
name = "uu_numfmt"
2022-01-19 11:35:00 +00:00
version = "0.0.12"
authors = ["uutils developers"]
license = "MIT"
description = "numfmt ~ (uutils) reformat NUMBER"
homepage = "https://github.com/uutils/coreutils"
repository = "https://github.com/uutils/coreutils/tree/main/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]
2022-01-11 13:17:22 +00:00
clap = { version = "3.0", features = ["wrap_help", "cargo"] }
uucore = { version=">=0.0.11", package="uucore", path="../../uucore" }
2017-10-22 07:57:49 +00:00
[[bin]]
name = "numfmt"
path = "src/main.rs"