2016-07-12 18:56:21 +00:00
|
|
|
[package]
|
2020-05-04 06:25:36 +00:00
|
|
|
name = "uu_install"
|
2016-07-12 18:56:21 +00:00
|
|
|
version = "0.0.1"
|
2020-05-24 17:15:34 +00:00
|
|
|
authors = [
|
|
|
|
"Ben Eills <ben@beneills.com>",
|
|
|
|
"uutils developers",
|
|
|
|
]
|
2020-04-08 14:20:53 +00:00
|
|
|
license = "MIT"
|
2020-05-25 04:43:59 +00:00
|
|
|
description = "install ~ (uutils) copy files from SOURCE to DESTINATION (with specified attributes)"
|
|
|
|
|
|
|
|
homepage = "https://github.com/uutils/coreutils"
|
|
|
|
repository = "https://github.com/uutils/coreutils/tree/master/src/uu/install"
|
|
|
|
keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"]
|
|
|
|
categories = ["command-line-utilities"]
|
|
|
|
edition = "2018"
|
2016-07-12 18:56:21 +00:00
|
|
|
|
|
|
|
[lib]
|
2020-04-14 16:59:25 +00:00
|
|
|
path = "src/install.rs"
|
2016-07-12 18:56:21 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2018-07-06 07:17:46 +00:00
|
|
|
getopts = "0.2.18"
|
2016-07-13 13:29:24 +00:00
|
|
|
libc = ">= 0.2"
|
2020-05-30 07:19:15 +00:00
|
|
|
uucore = { version="0.0.4", package="uucore", git="https://github.com/uutils/uucore.git", branch="canary", features=["mode"] }
|
2020-05-27 06:01:07 +00:00
|
|
|
uucore_procs = { version="0.0.4", package="uucore_procs", git="https://github.com/uutils/uucore.git", branch="canary" }
|
2016-07-12 18:56:21 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2018-06-14 07:22:03 +00:00
|
|
|
time = "0.1.40"
|
2016-07-12 18:56:21 +00:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "install"
|
2020-05-04 06:25:36 +00:00
|
|
|
path = "src/main.rs"
|