From d70db1f7d2c4f4ab7bdea2b8087e7dd9fae2c9e5 Mon Sep 17 00:00:00 2001 From: Roy Ivy III Date: Sun, 24 May 2020 23:43:59 -0500 Subject: [PATCH] docs ~ improve/update sub-crate meta information --- Cargo.toml | 4 ++-- src/uu/arch/Cargo.toml | 3 +++ src/uu/base32/Cargo.toml | 5 ++++- src/uu/base64/Cargo.toml | 5 ++++- src/uu/basename/Cargo.toml | 3 +++ src/uu/cat/Cargo.toml | 5 ++++- src/uu/chgrp/Cargo.toml | 5 ++++- src/uu/chmod/Cargo.toml | 5 ++++- src/uu/chown/Cargo.toml | 5 ++++- src/uu/chroot/Cargo.toml | 5 ++++- src/uu/cksum/Cargo.toml | 3 +++ src/uu/comm/Cargo.toml | 3 +++ src/uu/cp/Cargo.toml | 3 +++ src/uu/cut/Cargo.toml | 5 ++++- src/uu/date/Cargo.toml | 2 +- src/uu/df/Cargo.toml | 2 +- src/uu/dircolors/Cargo.toml | 9 ++++++++- src/uu/dirname/Cargo.toml | 2 +- src/uu/du/Cargo.toml | 9 ++++++++- src/uu/echo/Cargo.toml | 2 +- src/uu/env/Cargo.toml | 7 ++++++- src/uu/expand/Cargo.toml | 2 +- src/uu/expr/Cargo.toml | 9 ++++++++- src/uu/factor/Cargo.toml | 9 ++++++++- src/uu/false/Cargo.toml | 9 ++++++++- src/uu/fmt/Cargo.toml | 9 ++++++++- src/uu/fold/Cargo.toml | 9 ++++++++- src/uu/groups/Cargo.toml | 9 ++++++++- src/uu/hashsum/Cargo.toml | 9 ++++++++- src/uu/head/Cargo.toml | 9 ++++++++- src/uu/hostid/Cargo.toml | 9 ++++++++- src/uu/hostname/Cargo.toml | 9 ++++++++- src/uu/id/Cargo.toml | 9 ++++++++- src/uu/install/Cargo.toml | 7 +++++++ src/uu/join/Cargo.toml | 2 +- src/uu/kill/Cargo.toml | 9 ++++++++- src/uu/link/Cargo.toml | 2 +- src/uu/ln/Cargo.toml | 9 ++++++++- src/uu/logname/Cargo.toml | 9 ++++++++- src/uu/ls/Cargo.toml | 9 ++++++++- src/uu/true/Cargo.toml | 9 ++++++++- 41 files changed, 213 insertions(+), 36 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 2f8b910d1..269905714 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,4 +1,4 @@ -# uutils / coreutils +# coreutils (uutils) # * see the repository LICENSE, README, and CONTRIBUTING files for more information [package] @@ -12,7 +12,7 @@ homepage = "https://github.com/uutils/coreutils" repository = "https://github.com/uutils/coreutils" readme = "README.md" keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] -categories = ["os"] +categories = ["command-line-utilities", "os"] build = "build.rs" autotests = false diff --git a/src/uu/arch/Cargo.toml b/src/uu/arch/Cargo.toml index 7e38313da..16381ca4d 100644 --- a/src/uu/arch/Cargo.toml +++ b/src/uu/arch/Cargo.toml @@ -7,6 +7,9 @@ description = "arch ~ (uutils) display machine architecture" homepage = "https://github.com/uutils/coreutils" repository = "https://github.com/uutils/coreutils/tree/master/src/uu/arch" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/arch.rs" diff --git a/src/uu/base32/Cargo.toml b/src/uu/base32/Cargo.toml index 6d698e85a..eb11f0968 100644 --- a/src/uu/base32/Cargo.toml +++ b/src/uu/base32/Cargo.toml @@ -3,10 +3,13 @@ name = "uu_base32" version = "0.0.1" authors = ["uutils developers"] license = "MIT" -description = "base32 ~ (uutils) decode/encode base32" +description = "base32 ~ (uutils) decode/encode input (base32-encoding)" homepage = "https://github.com/uutils/coreutils" repository = "https://github.com/uutils/coreutils/tree/master/src/uu/base32" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/base32.rs" diff --git a/src/uu/base64/Cargo.toml b/src/uu/base64/Cargo.toml index c6dfb736d..d225a0fa9 100644 --- a/src/uu/base64/Cargo.toml +++ b/src/uu/base64/Cargo.toml @@ -3,10 +3,13 @@ name = "uu_base64" version = "0.0.1" authors = ["uutils developers"] license = "MIT" -description = "base64 ~ (uutils) decode/encode base64" +description = "base64 ~ (uutils) decode/encode input (base64-encoding)" homepage = "https://github.com/uutils/coreutils" repository = "https://github.com/uutils/coreutils/tree/master/src/uu/base64" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/base64.rs" diff --git a/src/uu/basename/Cargo.toml b/src/uu/basename/Cargo.toml index f7cfecc7b..421e3391c 100644 --- a/src/uu/basename/Cargo.toml +++ b/src/uu/basename/Cargo.toml @@ -7,6 +7,9 @@ description = "basename ~ (uutils) display PATHNAME with leading directory compo homepage = "https://github.com/uutils/coreutils" repository = "https://github.com/uutils/coreutils/tree/master/src/uu/basename" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/basename.rs" diff --git a/src/uu/cat/Cargo.toml b/src/uu/cat/Cargo.toml index d7d3c29b0..bc5401f49 100644 --- a/src/uu/cat/Cargo.toml +++ b/src/uu/cat/Cargo.toml @@ -3,10 +3,13 @@ name = "uu_cat" version = "0.0.1" authors = ["uutils developers"] license = "MIT" -description = "cat ~ (uutils) concatentate inputs to output" +description = "cat ~ (uutils) concatentate and display input" homepage = "https://github.com/uutils/coreutils" repository = "https://github.com/uutils/coreutils/tree/master/src/uu/cat" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/cat.rs" diff --git a/src/uu/chgrp/Cargo.toml b/src/uu/chgrp/Cargo.toml index c5a71d5ea..8e3abe8d1 100644 --- a/src/uu/chgrp/Cargo.toml +++ b/src/uu/chgrp/Cargo.toml @@ -3,10 +3,13 @@ name = "uu_chgrp" version = "0.0.1" authors = ["uutils developers"] license = "MIT" -description = "chgrp ~ (uutils) change the group ownership of FILES" +description = "chgrp ~ (uutils) change the group ownership of FILE" homepage = "https://github.com/uutils/coreutils" repository = "https://github.com/uutils/coreutils/tree/master/src/uu/chgrp" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/chgrp.rs" diff --git a/src/uu/chmod/Cargo.toml b/src/uu/chmod/Cargo.toml index 54dbd3360..2c5932c69 100644 --- a/src/uu/chmod/Cargo.toml +++ b/src/uu/chmod/Cargo.toml @@ -3,10 +3,13 @@ name = "uu_chmod" version = "0.0.1" authors = ["uutils developers"] license = "MIT" -description = "chmod ~ (uutils) change mode of FILES" +description = "chmod ~ (uutils) change mode of FILE" homepage = "https://github.com/uutils/coreutils" repository = "https://github.com/uutils/coreutils/tree/master/src/uu/chmod" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/chmod.rs" diff --git a/src/uu/chown/Cargo.toml b/src/uu/chown/Cargo.toml index b4f4d3eb1..45ac00f04 100644 --- a/src/uu/chown/Cargo.toml +++ b/src/uu/chown/Cargo.toml @@ -3,10 +3,13 @@ name = "uu_chown" version = "0.0.1" authors = ["uutils developers"] license = "MIT" -description = "chown ~ (uutils) change the ownership of FILES" +description = "chown ~ (uutils) change the ownership of FILE" homepage = "https://github.com/uutils/coreutils" repository = "https://github.com/uutils/coreutils/tree/master/src/uu/chown" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/chown.rs" diff --git a/src/uu/chroot/Cargo.toml b/src/uu/chroot/Cargo.toml index ed46fc068..8ed5ba33b 100644 --- a/src/uu/chroot/Cargo.toml +++ b/src/uu/chroot/Cargo.toml @@ -3,10 +3,13 @@ name = "uu_chroot" version = "0.0.1" authors = ["uutils developers"] license = "MIT" -description = "chroot ~ (uutils) run a command under a new root directory" +description = "chroot ~ (uutils) run COMMAND under a new root directory" homepage = "https://github.com/uutils/coreutils" repository = "https://github.com/uutils/coreutils/tree/master/src/uu/chroot" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/chroot.rs" diff --git a/src/uu/cksum/Cargo.toml b/src/uu/cksum/Cargo.toml index ef0802b95..7599f323c 100644 --- a/src/uu/cksum/Cargo.toml +++ b/src/uu/cksum/Cargo.toml @@ -7,6 +7,9 @@ description = "cksum ~ (uutils) display CRC and size of input" homepage = "https://github.com/uutils/coreutils" repository = "https://github.com/uutils/coreutils/tree/master/src/uu/cksum" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/cksum.rs" diff --git a/src/uu/comm/Cargo.toml b/src/uu/comm/Cargo.toml index 9fce43987..d0b14b242 100644 --- a/src/uu/comm/Cargo.toml +++ b/src/uu/comm/Cargo.toml @@ -7,6 +7,9 @@ description = "comm ~ (uutils) compare sorted inputs" homepage = "https://github.com/uutils/coreutils" repository = "https://github.com/uutils/coreutils/tree/master/src/uu/comm" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/comm.rs" diff --git a/src/uu/cp/Cargo.toml b/src/uu/cp/Cargo.toml index 6d313a6fb..7460b948d 100644 --- a/src/uu/cp/Cargo.toml +++ b/src/uu/cp/Cargo.toml @@ -11,6 +11,9 @@ description = "cp ~ (uutils) copy SOURCE to DESTINATION" homepage = "https://github.com/uutils/coreutils" repository = "https://github.com/uutils/coreutils/tree/master/src/uu/cp" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/cp.rs" diff --git a/src/uu/cut/Cargo.toml b/src/uu/cut/Cargo.toml index 5c59c461b..116752b8f 100644 --- a/src/uu/cut/Cargo.toml +++ b/src/uu/cut/Cargo.toml @@ -3,10 +3,13 @@ name = "uu_cut" version = "0.0.1" authors = ["uutils developers"] license = "MIT" -description = "cut ~ (uutils) display byte or field columns of input lines" +description = "cut ~ (uutils) display byte/field columns of input lines" homepage = "https://github.com/uutils/coreutils" repository = "https://github.com/uutils/coreutils/tree/master/src/uu/cut" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/cut.rs" diff --git a/src/uu/date/Cargo.toml b/src/uu/date/Cargo.toml index ed76cd8b6..9aaef70ed 100644 --- a/src/uu/date/Cargo.toml +++ b/src/uu/date/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "uu_date" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" description = "date ~ (uutils) display or set the current time" diff --git a/src/uu/df/Cargo.toml b/src/uu/df/Cargo.toml index 3e12d1cca..ac4617bf8 100644 --- a/src/uu/df/Cargo.toml +++ b/src/uu/df/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "uu_df" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" description = "df ~ (uutils) display file system information" diff --git a/src/uu/dircolors/Cargo.toml b/src/uu/dircolors/Cargo.toml index f246f3cd5..c56e19b93 100644 --- a/src/uu/dircolors/Cargo.toml +++ b/src/uu/dircolors/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_dircolors" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "dircolors ~ (uutils) display commands to set LS_COLORS" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/dircolors" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/dircolors.rs" diff --git a/src/uu/dirname/Cargo.toml b/src/uu/dirname/Cargo.toml index 6027f0858..c9b3542cb 100644 --- a/src/uu/dirname/Cargo.toml +++ b/src/uu/dirname/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "uu_dirname" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" description = "dirname ~ (uutils) display parent directory of PATHNAME" diff --git a/src/uu/du/Cargo.toml b/src/uu/du/Cargo.toml index 57160af8b..e548d4012 100644 --- a/src/uu/du/Cargo.toml +++ b/src/uu/du/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_du" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "du ~ (uutils) display disk usage" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/du" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/du.rs" diff --git a/src/uu/echo/Cargo.toml b/src/uu/echo/Cargo.toml index 2a7512872..31145a25f 100644 --- a/src/uu/echo/Cargo.toml +++ b/src/uu/echo/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "uu_echo" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" description = "echo ~ (uutils) display TEXT" diff --git a/src/uu/env/Cargo.toml b/src/uu/env/Cargo.toml index 2884b623d..75a7ca92f 100644 --- a/src/uu/env/Cargo.toml +++ b/src/uu/env/Cargo.toml @@ -2,8 +2,13 @@ name = "uu_env" version = "0.0.1" authors = ["uutils developers"] -description = "Set each NAME to VALUE in the environment and run COMMAND" license = "MIT" +description = "env ~ (uutils) set each NAME to VALUE in the environment and run COMMAND" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/env" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] edition = "2018" [lib] diff --git a/src/uu/expand/Cargo.toml b/src/uu/expand/Cargo.toml index 283d81af7..02826bd6e 100644 --- a/src/uu/expand/Cargo.toml +++ b/src/uu/expand/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "uu_expand" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" description = "expand ~ (uutils) convert input tabs to spaces" diff --git a/src/uu/expr/Cargo.toml b/src/uu/expr/Cargo.toml index 5f8069356..d6cbd4ac2 100644 --- a/src/uu/expr/Cargo.toml +++ b/src/uu/expr/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_expr" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "expr ~ (uutils) display the value of EXPRESSION" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/expr" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/expr.rs" diff --git a/src/uu/factor/Cargo.toml b/src/uu/factor/Cargo.toml index c4121a939..aed243d6c 100644 --- a/src/uu/factor/Cargo.toml +++ b/src/uu/factor/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_factor" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "factor ~ (uutils) display the prime factors of each NUMBER" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/factor.rs" diff --git a/src/uu/false/Cargo.toml b/src/uu/false/Cargo.toml index a796e2212..e485c8955 100644 --- a/src/uu/false/Cargo.toml +++ b/src/uu/false/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_false" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "false ~ (uutils) do nothing and fail" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/false" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/false.rs" diff --git a/src/uu/fmt/Cargo.toml b/src/uu/fmt/Cargo.toml index 2cd79cf3f..2f502895f 100644 --- a/src/uu/fmt/Cargo.toml +++ b/src/uu/fmt/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_fmt" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "fmt ~ (uutils) reformat each paragraph of input" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/fmt" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/fmt.rs" diff --git a/src/uu/fold/Cargo.toml b/src/uu/fold/Cargo.toml index 8b0735c45..993516f94 100644 --- a/src/uu/fold/Cargo.toml +++ b/src/uu/fold/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_fold" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "fold ~ (uutils) wrap each line of input" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/fold" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/fold.rs" diff --git a/src/uu/groups/Cargo.toml b/src/uu/groups/Cargo.toml index 2ef847013..d2af1f4df 100644 --- a/src/uu/groups/Cargo.toml +++ b/src/uu/groups/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_groups" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "groups ~ (uutils) display group memberships for USERNAME" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/groups" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/groups.rs" diff --git a/src/uu/hashsum/Cargo.toml b/src/uu/hashsum/Cargo.toml index e69407191..e111f9c67 100644 --- a/src/uu/hashsum/Cargo.toml +++ b/src/uu/hashsum/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_hashsum" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "hashsum ~ (uutils) display or check input digests" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/hashsum" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/hashsum.rs" diff --git a/src/uu/head/Cargo.toml b/src/uu/head/Cargo.toml index 7a5cb5f40..9c5f91d2c 100644 --- a/src/uu/head/Cargo.toml +++ b/src/uu/head/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_head" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "head ~ (uutils) display the first lines of input" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/head" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/head.rs" diff --git a/src/uu/hostid/Cargo.toml b/src/uu/hostid/Cargo.toml index f8da1c2eb..45535dc95 100644 --- a/src/uu/hostid/Cargo.toml +++ b/src/uu/hostid/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_hostid" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "hostid ~ (uutils) display the numeric identifier of the current host" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/hostid" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/hostid.rs" diff --git a/src/uu/hostname/Cargo.toml b/src/uu/hostname/Cargo.toml index 564559bdb..fe76d9fb4 100644 --- a/src/uu/hostname/Cargo.toml +++ b/src/uu/hostname/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_hostname" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "hostname ~ (uutils) display or set the host name of the current host" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/hostname" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/hostname.rs" diff --git a/src/uu/id/Cargo.toml b/src/uu/id/Cargo.toml index 2841bf360..e33c52337 100644 --- a/src/uu/id/Cargo.toml +++ b/src/uu/id/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_id" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "id ~ (uutils) display user and group information for USER" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/id" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/id.rs" diff --git a/src/uu/install/Cargo.toml b/src/uu/install/Cargo.toml index 75dc66f74..9deeca592 100644 --- a/src/uu/install/Cargo.toml +++ b/src/uu/install/Cargo.toml @@ -6,6 +6,13 @@ authors = [ "uutils developers", ] license = "MIT" +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" [lib] path = "src/install.rs" diff --git a/src/uu/join/Cargo.toml b/src/uu/join/Cargo.toml index 6e8abaf68..c2297e189 100644 --- a/src/uu/join/Cargo.toml +++ b/src/uu/join/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "uu_join" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" description = "join ~ (uutils) merge lines from inputs with matching join fields" diff --git a/src/uu/kill/Cargo.toml b/src/uu/kill/Cargo.toml index bea863e9a..6103b3568 100644 --- a/src/uu/kill/Cargo.toml +++ b/src/uu/kill/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_kill" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "kill ~ (uutils) send a signal to a process" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/kill" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/kill.rs" diff --git a/src/uu/link/Cargo.toml b/src/uu/link/Cargo.toml index 2db999910..3fcbd78ca 100644 --- a/src/uu/link/Cargo.toml +++ b/src/uu/link/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "uu_link" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" description = "link ~ (uutils) create a hard (file system) link to FILE" diff --git a/src/uu/ln/Cargo.toml b/src/uu/ln/Cargo.toml index 5109376c8..b55aaa9d2 100644 --- a/src/uu/ln/Cargo.toml +++ b/src/uu/ln/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_ln" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "ln ~ (uutils) create a (file system) link to TARGET" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/ln" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/ln.rs" diff --git a/src/uu/logname/Cargo.toml b/src/uu/logname/Cargo.toml index 8ace8f70c..8f70b57ae 100644 --- a/src/uu/logname/Cargo.toml +++ b/src/uu/logname/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_logname" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "logname ~ (uutils) display the login name of the current user" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/logname" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/logname.rs" diff --git a/src/uu/ls/Cargo.toml b/src/uu/ls/Cargo.toml index 6e7df2e6d..969630822 100644 --- a/src/uu/ls/Cargo.toml +++ b/src/uu/ls/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_ls" version = "0.0.1" -authors = ["Jeremiah Peschka "] +authors = ["uutils developers"] license = "MIT" +description = "ls ~ (uutils) display directory contents" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/ls" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/ls.rs" diff --git a/src/uu/true/Cargo.toml b/src/uu/true/Cargo.toml index 55ee1616a..a82af4f1c 100644 --- a/src/uu/true/Cargo.toml +++ b/src/uu/true/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_true" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "true ~ (uutils) do nothing and succeed" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/true" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/true.rs"