2015-12-24 06:11:00 +00:00
|
|
|
[package]
|
2020-05-04 06:25:36 +00:00
|
|
|
name = "uu_printf"
|
2015-12-24 06:11:00 +00:00
|
|
|
version = "0.0.1"
|
2020-05-24 17:15:34 +00:00
|
|
|
authors = [
|
|
|
|
"Nathan Ross",
|
|
|
|
"uutils developers",
|
|
|
|
]
|
2020-04-08 14:20:53 +00:00
|
|
|
license = "MIT"
|
2020-05-24 17:15:34 +00:00
|
|
|
description = "printf ~ (uutils) FORMAT and display ARGUMENTS"
|
|
|
|
|
|
|
|
homepage = "https://github.com/uutils/coreutils"
|
|
|
|
repository = "https://github.com/uutils/coreutils/tree/master/src/uu/printf"
|
2020-05-31 04:02:42 +00:00
|
|
|
keywords = ["coreutils", "uutils", "cross-platform", "cli", "utility"]
|
2020-05-24 17:15:34 +00:00
|
|
|
categories = ["command-line-utilities"]
|
|
|
|
edition = "2018"
|
2015-12-24 06:11:00 +00:00
|
|
|
|
|
|
|
[lib]
|
2020-04-14 16:59:25 +00:00
|
|
|
path = "src/printf.rs"
|
2015-12-24 06:11:00 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2019-06-13 12:59:16 +00:00
|
|
|
itertools = "0.8.0"
|
2020-11-07 21:18:23 +00:00
|
|
|
uucore = { version=">=0.0.4", package="uucore", path="../../uucore" }
|
|
|
|
uucore_procs = { version=">=0.0.4", package="uucore_procs", path="../../uucore_procs" }
|
2015-12-24 06:11:00 +00:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "printf"
|
2020-05-04 06:25:36 +00:00
|
|
|
path = "src/main.rs"
|