From 7cfa8be5f275d96e0722df686bdaaaf226c98780 Mon Sep 17 00:00:00 2001 From: Roy Ivy III Date: Sun, 24 May 2020 12:15:34 -0500 Subject: [PATCH] docs ~ add meta information to sub-crates --- src/uu/arch/Cargo.toml | 6 +++++- src/uu/base32/Cargo.toml | 6 +++++- src/uu/base64/Cargo.toml | 6 +++++- src/uu/basename/Cargo.toml | 6 +++++- src/uu/cat/Cargo.toml | 6 +++++- src/uu/chgrp/Cargo.toml | 6 +++++- src/uu/chmod/Cargo.toml | 6 +++++- src/uu/chown/Cargo.toml | 6 +++++- src/uu/chroot/Cargo.toml | 6 +++++- src/uu/cksum/Cargo.toml | 6 +++++- src/uu/comm/Cargo.toml | 6 +++++- src/uu/cp/Cargo.toml | 5 +++++ src/uu/cut/Cargo.toml | 6 +++++- src/uu/date/Cargo.toml | 7 +++++++ src/uu/df/Cargo.toml | 7 +++++++ src/uu/dirname/Cargo.toml | 7 +++++++ src/uu/echo/Cargo.toml | 7 +++++++ src/uu/expand/Cargo.toml | 7 +++++++ src/uu/install/Cargo.toml | 5 ++++- src/uu/join/Cargo.toml | 7 +++++++ src/uu/link/Cargo.toml | 7 +++++++ src/uu/mkdir/Cargo.toml | 9 ++++++++- src/uu/mkfifo/Cargo.toml | 9 ++++++++- src/uu/mknod/Cargo.toml | 9 ++++++++- src/uu/mktemp/Cargo.toml | 9 ++++++++- src/uu/more/Cargo.toml | 9 ++++++++- src/uu/mv/Cargo.toml | 9 ++++++++- src/uu/nice/Cargo.toml | 9 ++++++++- src/uu/nl/Cargo.toml | 9 ++++++++- src/uu/nohup/Cargo.toml | 9 ++++++++- src/uu/nproc/Cargo.toml | 9 ++++++++- src/uu/numfmt/Cargo.toml | 9 ++++++++- src/uu/od/Cargo.toml | 9 ++++++++- src/uu/paste/Cargo.toml | 9 ++++++++- src/uu/pathchk/Cargo.toml | 9 ++++++++- src/uu/pinky/Cargo.toml | 9 ++++++++- src/uu/printenv/Cargo.toml | 9 ++++++++- src/uu/printf/Cargo.toml | 12 +++++++++++- src/uu/ptx/Cargo.toml | 9 ++++++++- src/uu/pwd/Cargo.toml | 9 ++++++++- src/uu/readlink/Cargo.toml | 9 ++++++++- src/uu/realpath/Cargo.toml | 9 ++++++++- src/uu/relpath/Cargo.toml | 9 ++++++++- src/uu/rm/Cargo.toml | 9 ++++++++- src/uu/rmdir/Cargo.toml | 9 ++++++++- src/uu/seq/Cargo.toml | 9 ++++++++- src/uu/shred/Cargo.toml | 9 ++++++++- src/uu/shuf/Cargo.toml | 9 ++++++++- src/uu/sleep/Cargo.toml | 9 ++++++++- src/uu/sort/Cargo.toml | 9 ++++++++- src/uu/split/Cargo.toml | 9 ++++++++- src/uu/stat/Cargo.toml | 9 ++++++++- src/uu/stdbuf/Cargo.toml | 9 ++++++++- src/uu/stdbuf/src/libstdbuf/Cargo.toml | 9 ++++++++- src/uu/sum/Cargo.toml | 9 ++++++++- src/uu/sync/Cargo.toml | 9 ++++++++- src/uu/tac/Cargo.toml | 9 ++++++++- src/uu/tail/Cargo.toml | 9 ++++++++- src/uu/tee/Cargo.toml | 9 ++++++++- src/uu/test/Cargo.toml | 9 ++++++++- src/uu/timeout/Cargo.toml | 9 ++++++++- src/uu/touch/Cargo.toml | 9 ++++++++- src/uu/tr/Cargo.toml | 9 ++++++++- src/uu/truncate/Cargo.toml | 9 ++++++++- src/uu/tsort/Cargo.toml | 9 ++++++++- src/uu/tty/Cargo.toml | 9 ++++++++- src/uu/uname/Cargo.toml | 9 ++++++++- src/uu/unexpand/Cargo.toml | 9 ++++++++- src/uu/uniq/Cargo.toml | 9 ++++++++- src/uu/unlink/Cargo.toml | 9 ++++++++- src/uu/uptime/Cargo.toml | 9 ++++++++- src/uu/users/Cargo.toml | 9 ++++++++- src/uu/wc/Cargo.toml | 9 ++++++++- src/uu/who/Cargo.toml | 9 ++++++++- src/uu/whoami/Cargo.toml | 10 ++++++++-- src/uu/yes/Cargo.toml | 10 ++++++++-- 76 files changed, 561 insertions(+), 70 deletions(-) diff --git a/src/uu/arch/Cargo.toml b/src/uu/arch/Cargo.toml index f546917f7..7e38313da 100644 --- a/src/uu/arch/Cargo.toml +++ b/src/uu/arch/Cargo.toml @@ -1,8 +1,12 @@ [package] name = "uu_arch" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "arch ~ (uutils) display machine architecture" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/arch" [lib] path = "src/arch.rs" diff --git a/src/uu/base32/Cargo.toml b/src/uu/base32/Cargo.toml index 83cf8e1d7..6d698e85a 100644 --- a/src/uu/base32/Cargo.toml +++ b/src/uu/base32/Cargo.toml @@ -1,8 +1,12 @@ [package] name = "uu_base32" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "base32 ~ (uutils) decode/encode base32" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/base32" [lib] path = "src/base32.rs" diff --git a/src/uu/base64/Cargo.toml b/src/uu/base64/Cargo.toml index 4db021c6d..c6dfb736d 100644 --- a/src/uu/base64/Cargo.toml +++ b/src/uu/base64/Cargo.toml @@ -1,8 +1,12 @@ [package] name = "uu_base64" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "base64 ~ (uutils) decode/encode base64" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/base64" [lib] path = "src/base64.rs" diff --git a/src/uu/basename/Cargo.toml b/src/uu/basename/Cargo.toml index c9b2b4a46..f7cfecc7b 100644 --- a/src/uu/basename/Cargo.toml +++ b/src/uu/basename/Cargo.toml @@ -1,8 +1,12 @@ [package] name = "uu_basename" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "basename ~ (uutils) display PATHNAME with leading directory components removed" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/basename" [lib] path = "src/basename.rs" diff --git a/src/uu/cat/Cargo.toml b/src/uu/cat/Cargo.toml index 41e116f10..d7d3c29b0 100644 --- a/src/uu/cat/Cargo.toml +++ b/src/uu/cat/Cargo.toml @@ -1,8 +1,12 @@ [package] name = "uu_cat" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "cat ~ (uutils) concatentate inputs to output" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/cat" [lib] path = "src/cat.rs" diff --git a/src/uu/chgrp/Cargo.toml b/src/uu/chgrp/Cargo.toml index 1a2664248..c5a71d5ea 100644 --- a/src/uu/chgrp/Cargo.toml +++ b/src/uu/chgrp/Cargo.toml @@ -1,8 +1,12 @@ [package] name = "uu_chgrp" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "chgrp ~ (uutils) change the group ownership of FILES" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/chgrp" [lib] path = "src/chgrp.rs" diff --git a/src/uu/chmod/Cargo.toml b/src/uu/chmod/Cargo.toml index 1527bdb15..54dbd3360 100644 --- a/src/uu/chmod/Cargo.toml +++ b/src/uu/chmod/Cargo.toml @@ -1,8 +1,12 @@ [package] name = "uu_chmod" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "chmod ~ (uutils) change mode of FILES" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/chmod" [lib] path = "src/chmod.rs" diff --git a/src/uu/chown/Cargo.toml b/src/uu/chown/Cargo.toml index bc8cc5b99..b4f4d3eb1 100644 --- a/src/uu/chown/Cargo.toml +++ b/src/uu/chown/Cargo.toml @@ -1,8 +1,12 @@ [package] name = "uu_chown" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "chown ~ (uutils) change the ownership of FILES" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/chown" [lib] path = "src/chown.rs" diff --git a/src/uu/chroot/Cargo.toml b/src/uu/chroot/Cargo.toml index 5953b4046..ed46fc068 100644 --- a/src/uu/chroot/Cargo.toml +++ b/src/uu/chroot/Cargo.toml @@ -1,8 +1,12 @@ [package] name = "uu_chroot" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "chroot ~ (uutils) run a command under a new root directory" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/chroot" [lib] path = "src/chroot.rs" diff --git a/src/uu/cksum/Cargo.toml b/src/uu/cksum/Cargo.toml index d3004690e..ef0802b95 100644 --- a/src/uu/cksum/Cargo.toml +++ b/src/uu/cksum/Cargo.toml @@ -1,8 +1,12 @@ [package] name = "uu_cksum" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +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" [lib] path = "src/cksum.rs" diff --git a/src/uu/comm/Cargo.toml b/src/uu/comm/Cargo.toml index b10d6fc97..9fce43987 100644 --- a/src/uu/comm/Cargo.toml +++ b/src/uu/comm/Cargo.toml @@ -1,8 +1,12 @@ [package] name = "uu_comm" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "comm ~ (uutils) compare sorted inputs" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/comm" [lib] path = "src/comm.rs" diff --git a/src/uu/cp/Cargo.toml b/src/uu/cp/Cargo.toml index b73fb4caf..6d313a6fb 100644 --- a/src/uu/cp/Cargo.toml +++ b/src/uu/cp/Cargo.toml @@ -4,8 +4,13 @@ version = "0.0.1" authors = [ "Jordy Dickinson ", "Joshua S. Miller ", + "uutils developers", ] license = "MIT" +description = "cp ~ (uutils) copy SOURCE to DESTINATION" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/cp" [lib] path = "src/cp.rs" diff --git a/src/uu/cut/Cargo.toml b/src/uu/cut/Cargo.toml index 17d921bb7..5c59c461b 100644 --- a/src/uu/cut/Cargo.toml +++ b/src/uu/cut/Cargo.toml @@ -1,8 +1,12 @@ [package] name = "uu_cut" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "cut ~ (uutils) display byte or field columns of input lines" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/cut" [lib] path = "src/cut.rs" diff --git a/src/uu/date/Cargo.toml b/src/uu/date/Cargo.toml index 141ba9b88..ed76cd8b6 100644 --- a/src/uu/date/Cargo.toml +++ b/src/uu/date/Cargo.toml @@ -3,6 +3,13 @@ name = "uu_date" version = "0.0.1" authors = [] license = "MIT" +description = "date ~ (uutils) display or set the current time" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/date" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/date.rs" diff --git a/src/uu/df/Cargo.toml b/src/uu/df/Cargo.toml index de8f15d0c..3e12d1cca 100644 --- a/src/uu/df/Cargo.toml +++ b/src/uu/df/Cargo.toml @@ -3,6 +3,13 @@ name = "uu_df" version = "0.0.1" authors = [] license = "MIT" +description = "df ~ (uutils) display file system information" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/df" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/df.rs" diff --git a/src/uu/dirname/Cargo.toml b/src/uu/dirname/Cargo.toml index b7ec7c075..6027f0858 100644 --- a/src/uu/dirname/Cargo.toml +++ b/src/uu/dirname/Cargo.toml @@ -3,6 +3,13 @@ name = "uu_dirname" version = "0.0.1" authors = [] license = "MIT" +description = "dirname ~ (uutils) display parent directory of PATHNAME" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/dirname" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/dirname.rs" diff --git a/src/uu/echo/Cargo.toml b/src/uu/echo/Cargo.toml index 3adc52366..2a7512872 100644 --- a/src/uu/echo/Cargo.toml +++ b/src/uu/echo/Cargo.toml @@ -3,6 +3,13 @@ name = "uu_echo" version = "0.0.1" authors = [] license = "MIT" +description = "echo ~ (uutils) display TEXT" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/echo" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/echo.rs" diff --git a/src/uu/expand/Cargo.toml b/src/uu/expand/Cargo.toml index ad9422617..283d81af7 100644 --- a/src/uu/expand/Cargo.toml +++ b/src/uu/expand/Cargo.toml @@ -3,6 +3,13 @@ name = "uu_expand" version = "0.0.1" authors = [] license = "MIT" +description = "expand ~ (uutils) convert input tabs to spaces" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/expand" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/expand.rs" diff --git a/src/uu/install/Cargo.toml b/src/uu/install/Cargo.toml index 2b7341edc..75dc66f74 100644 --- a/src/uu/install/Cargo.toml +++ b/src/uu/install/Cargo.toml @@ -1,7 +1,10 @@ [package] name = "uu_install" version = "0.0.1" -authors = ["Ben Eills "] +authors = [ + "Ben Eills ", + "uutils developers", +] license = "MIT" [lib] diff --git a/src/uu/join/Cargo.toml b/src/uu/join/Cargo.toml index 0fbb24b70..6e8abaf68 100644 --- a/src/uu/join/Cargo.toml +++ b/src/uu/join/Cargo.toml @@ -3,6 +3,13 @@ name = "uu_join" version = "0.0.1" authors = [] license = "MIT" +description = "join ~ (uutils) merge lines from inputs with matching join fields" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/join" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/join.rs" diff --git a/src/uu/link/Cargo.toml b/src/uu/link/Cargo.toml index 634409e78..2db999910 100644 --- a/src/uu/link/Cargo.toml +++ b/src/uu/link/Cargo.toml @@ -3,6 +3,13 @@ name = "uu_link" version = "0.0.1" authors = [] license = "MIT" +description = "link ~ (uutils) create a hard (file system) link to FILE" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/link" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/link.rs" diff --git a/src/uu/mkdir/Cargo.toml b/src/uu/mkdir/Cargo.toml index f039c8846..79cc6825d 100644 --- a/src/uu/mkdir/Cargo.toml +++ b/src/uu/mkdir/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_mkdir" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "mkdir ~ (uutils) create DIRECTORY" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/mkdir" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/mkdir.rs" diff --git a/src/uu/mkfifo/Cargo.toml b/src/uu/mkfifo/Cargo.toml index cbb3289b2..05005b14d 100644 --- a/src/uu/mkfifo/Cargo.toml +++ b/src/uu/mkfifo/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_mkfifo" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "mkfifo ~ (uutils) create FIFOs (named pipes)" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/mkfifo" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/mkfifo.rs" diff --git a/src/uu/mknod/Cargo.toml b/src/uu/mknod/Cargo.toml index 7d5dcdfcd..663ca98b0 100644 --- a/src/uu/mknod/Cargo.toml +++ b/src/uu/mknod/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_mknod" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "mknod ~ (uutils) create special file NAME of TYPE" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/mknod" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] name = "uu_mknod" diff --git a/src/uu/mktemp/Cargo.toml b/src/uu/mktemp/Cargo.toml index a772fe73d..93cb018f0 100644 --- a/src/uu/mktemp/Cargo.toml +++ b/src/uu/mktemp/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_mktemp" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "mktemp ~ (uutils) create and display a temporary file or directory from TEMPLATE" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/mktemp" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/mktemp.rs" diff --git a/src/uu/more/Cargo.toml b/src/uu/more/Cargo.toml index 5e4dbb390..332cedcda 100644 --- a/src/uu/more/Cargo.toml +++ b/src/uu/more/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_more" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "more ~ (uutils) input perusal filter" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/more" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/more.rs" diff --git a/src/uu/mv/Cargo.toml b/src/uu/mv/Cargo.toml index c7d85bc80..2e9256895 100644 --- a/src/uu/mv/Cargo.toml +++ b/src/uu/mv/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_mv" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "mv ~ (uutils) move (rename) SOURCE to DESTINATION" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/mv" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/mv.rs" diff --git a/src/uu/nice/Cargo.toml b/src/uu/nice/Cargo.toml index b2b914e6f..8dec9ae6a 100644 --- a/src/uu/nice/Cargo.toml +++ b/src/uu/nice/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_nice" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "nice ~ (uutils) run PROGRAM with modified scheduling priority" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/nice" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/nice.rs" diff --git a/src/uu/nl/Cargo.toml b/src/uu/nl/Cargo.toml index dc48ae52f..3facfb384 100644 --- a/src/uu/nl/Cargo.toml +++ b/src/uu/nl/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_nl" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "nl ~ (uutils) display input with added line numbers" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/nl" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/nl.rs" diff --git a/src/uu/nohup/Cargo.toml b/src/uu/nohup/Cargo.toml index d6e189055..2753d411e 100644 --- a/src/uu/nohup/Cargo.toml +++ b/src/uu/nohup/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_nohup" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "nohup ~ (uutils) run COMMAND, ignoring hangup signals" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/nohup" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/nohup.rs" diff --git a/src/uu/nproc/Cargo.toml b/src/uu/nproc/Cargo.toml index 61aaffabd..e63468260 100644 --- a/src/uu/nproc/Cargo.toml +++ b/src/uu/nproc/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_nproc" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "nproc ~ (uutils) display the number of processing units available" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/nproc" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/nproc.rs" diff --git a/src/uu/numfmt/Cargo.toml b/src/uu/numfmt/Cargo.toml index 71e5ea146..bf64e922f 100644 --- a/src/uu/numfmt/Cargo.toml +++ b/src/uu/numfmt/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_numfmt" version = "0.0.1" -authors = [] +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", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/numfmt.rs" diff --git a/src/uu/od/Cargo.toml b/src/uu/od/Cargo.toml index 4e015bb2d..f81fbe7d6 100644 --- a/src/uu/od/Cargo.toml +++ b/src/uu/od/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_od" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "od ~ (uutils) display formatted representation of input" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/od" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/od.rs" diff --git a/src/uu/paste/Cargo.toml b/src/uu/paste/Cargo.toml index c65704f7d..a4c84fd39 100644 --- a/src/uu/paste/Cargo.toml +++ b/src/uu/paste/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_paste" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "paste ~ (uutils) merge lines from inputs" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/paste" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/paste.rs" diff --git a/src/uu/pathchk/Cargo.toml b/src/uu/pathchk/Cargo.toml index 93e8a1a7e..768a273e5 100644 --- a/src/uu/pathchk/Cargo.toml +++ b/src/uu/pathchk/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_pathchk" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "pathchk ~ (uutils) diagnose invalid or non-portable PATHNAME" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/pathchk" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/pathchk.rs" diff --git a/src/uu/pinky/Cargo.toml b/src/uu/pinky/Cargo.toml index c90e063bf..fef8a5fa3 100644 --- a/src/uu/pinky/Cargo.toml +++ b/src/uu/pinky/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_pinky" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "pinky ~ (uutils) display user information" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/pinky" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/pinky.rs" diff --git a/src/uu/printenv/Cargo.toml b/src/uu/printenv/Cargo.toml index 1e19d5078..009565d41 100644 --- a/src/uu/printenv/Cargo.toml +++ b/src/uu/printenv/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_printenv" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "printenv ~ (uutils) display value of environment VAR" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/printenv" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/printenv.rs" diff --git a/src/uu/printf/Cargo.toml b/src/uu/printf/Cargo.toml index cca26672f..25e386ad9 100644 --- a/src/uu/printf/Cargo.toml +++ b/src/uu/printf/Cargo.toml @@ -1,8 +1,18 @@ [package] name = "uu_printf" version = "0.0.1" -authors = ["Nathan Ross"] +authors = [ + "Nathan Ross", + "uutils developers", +] license = "MIT" +description = "printf ~ (uutils) FORMAT and display ARGUMENTS" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/printf" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/printf.rs" diff --git a/src/uu/ptx/Cargo.toml b/src/uu/ptx/Cargo.toml index e229c9474..8c2d69b24 100644 --- a/src/uu/ptx/Cargo.toml +++ b/src/uu/ptx/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_ptx" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "ptx ~ (uutils) display a permuted index of input" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/ptx" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/ptx.rs" diff --git a/src/uu/pwd/Cargo.toml b/src/uu/pwd/Cargo.toml index 48220f819..efb6a6cdb 100644 --- a/src/uu/pwd/Cargo.toml +++ b/src/uu/pwd/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_pwd" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "pwd ~ (uutils) display current working directory" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/pwd" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/pwd.rs" diff --git a/src/uu/readlink/Cargo.toml b/src/uu/readlink/Cargo.toml index 5ac7d1fad..b6006a99f 100644 --- a/src/uu/readlink/Cargo.toml +++ b/src/uu/readlink/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_readlink" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "readlink ~ (uutils) display resolved path of PATHNAME" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/readlink" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/readlink.rs" diff --git a/src/uu/realpath/Cargo.toml b/src/uu/realpath/Cargo.toml index 4f6d375c7..21376f682 100644 --- a/src/uu/realpath/Cargo.toml +++ b/src/uu/realpath/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_realpath" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "realpath ~ (uutils) display resolved absolute path of PATHNAME" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/realpath" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/realpath.rs" diff --git a/src/uu/relpath/Cargo.toml b/src/uu/relpath/Cargo.toml index bb1caad43..9290e6b3b 100644 --- a/src/uu/relpath/Cargo.toml +++ b/src/uu/relpath/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_relpath" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "relpath ~ (uutils) display relative path of PATHNAME_TO from PATHNAME_FROM" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/relpath" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/relpath.rs" diff --git a/src/uu/rm/Cargo.toml b/src/uu/rm/Cargo.toml index 711c82849..7c8cb8055 100644 --- a/src/uu/rm/Cargo.toml +++ b/src/uu/rm/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_rm" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "rm ~ (uutils) remove PATHNAME" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/rm" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/rm.rs" diff --git a/src/uu/rmdir/Cargo.toml b/src/uu/rmdir/Cargo.toml index 3f2cd6071..69a43757a 100644 --- a/src/uu/rmdir/Cargo.toml +++ b/src/uu/rmdir/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_rmdir" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "rmdir ~ (uutils) remove empty DIRECTORY" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/rmdir" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/rmdir.rs" diff --git a/src/uu/seq/Cargo.toml b/src/uu/seq/Cargo.toml index 896c8dc48..76f323141 100644 --- a/src/uu/seq/Cargo.toml +++ b/src/uu/seq/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_seq" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "seq ~ (uutils) display a sequence of numbers" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/seq" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/seq.rs" diff --git a/src/uu/shred/Cargo.toml b/src/uu/shred/Cargo.toml index e5f60bc32..4e73d5ef6 100644 --- a/src/uu/shred/Cargo.toml +++ b/src/uu/shred/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_shred" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "shred ~ (uutils) hide former FILE contents with repeated overwrites" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/shred" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/shred.rs" diff --git a/src/uu/shuf/Cargo.toml b/src/uu/shuf/Cargo.toml index d580ce69c..32bb2cdc5 100644 --- a/src/uu/shuf/Cargo.toml +++ b/src/uu/shuf/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_shuf" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "shuf ~ (uutils) display random permutations of input lines" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/shuf" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/shuf.rs" diff --git a/src/uu/sleep/Cargo.toml b/src/uu/sleep/Cargo.toml index a93dd5438..6b6c18dab 100644 --- a/src/uu/sleep/Cargo.toml +++ b/src/uu/sleep/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_sleep" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "sleep ~ (uutils) pause for DURATION" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/sleep" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/sleep.rs" diff --git a/src/uu/sort/Cargo.toml b/src/uu/sort/Cargo.toml index 949e72d9d..48864f57a 100644 --- a/src/uu/sort/Cargo.toml +++ b/src/uu/sort/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_sort" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "sort ~ (uutils) sort input lines" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/sort" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/sort.rs" diff --git a/src/uu/split/Cargo.toml b/src/uu/split/Cargo.toml index afdc46c15..ad5fc6f59 100644 --- a/src/uu/split/Cargo.toml +++ b/src/uu/split/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_split" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "split ~ (uutils) split input into output files" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/split" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/split.rs" diff --git a/src/uu/stat/Cargo.toml b/src/uu/stat/Cargo.toml index 5e8583f41..8cd3fab5a 100644 --- a/src/uu/stat/Cargo.toml +++ b/src/uu/stat/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_stat" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "stat ~ (uutils) display FILE status" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/stat" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/stat.rs" diff --git a/src/uu/stdbuf/Cargo.toml b/src/uu/stdbuf/Cargo.toml index 674b974a3..dace3be17 100644 --- a/src/uu/stdbuf/Cargo.toml +++ b/src/uu/stdbuf/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_stdbuf" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "stdbuf ~ (uutils) run COMMAND with modified standard stream buffering" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/stdbuf" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/stdbuf.rs" diff --git a/src/uu/stdbuf/src/libstdbuf/Cargo.toml b/src/uu/stdbuf/src/libstdbuf/Cargo.toml index 3b8296555..8f66f375d 100644 --- a/src/uu/stdbuf/src/libstdbuf/Cargo.toml +++ b/src/uu/stdbuf/src/libstdbuf/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_stdbuf_libstdbuf" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "stdbuf/libstdbuf ~ (uutils); dynamic library required for stdbuf" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/stdbuf" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] name = "libstdbuf" diff --git a/src/uu/sum/Cargo.toml b/src/uu/sum/Cargo.toml index aa401cb76..78ba37071 100644 --- a/src/uu/sum/Cargo.toml +++ b/src/uu/sum/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_sum" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "sum ~ (uutils) display checksum and block counts for input" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/sum" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/sum.rs" diff --git a/src/uu/sync/Cargo.toml b/src/uu/sync/Cargo.toml index f6c7b2e7d..c67aa9a69 100644 --- a/src/uu/sync/Cargo.toml +++ b/src/uu/sync/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_sync" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "sync ~ (uutils) synchronize cache writes to storage" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/sync" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/sync.rs" diff --git a/src/uu/tac/Cargo.toml b/src/uu/tac/Cargo.toml index be6f3abd9..5b6f7d880 100644 --- a/src/uu/tac/Cargo.toml +++ b/src/uu/tac/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_tac" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "tac ~ (uutils) concatenate and display input lines in reverse order" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/tac" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/tac.rs" diff --git a/src/uu/tail/Cargo.toml b/src/uu/tail/Cargo.toml index 323704921..d45a6e68d 100644 --- a/src/uu/tail/Cargo.toml +++ b/src/uu/tail/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_tail" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "tail ~ (uutils) display the last lines of input" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/tail" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/tail.rs" diff --git a/src/uu/tee/Cargo.toml b/src/uu/tee/Cargo.toml index 5a26848b9..e8fd23c03 100644 --- a/src/uu/tee/Cargo.toml +++ b/src/uu/tee/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_tee" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "tee ~ (uutils) display input and copy to FILE" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/tee" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/tee.rs" diff --git a/src/uu/test/Cargo.toml b/src/uu/test/Cargo.toml index a330b870a..e12201c33 100644 --- a/src/uu/test/Cargo.toml +++ b/src/uu/test/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_test" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "test ~ (uutils) evaluate comparison and file type expressions" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/test" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/test.rs" diff --git a/src/uu/timeout/Cargo.toml b/src/uu/timeout/Cargo.toml index 7974f92ce..138d53a0a 100644 --- a/src/uu/timeout/Cargo.toml +++ b/src/uu/timeout/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_timeout" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "timeout ~ (uutils) run COMMAND with a DURATION time limit" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/timeout" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/timeout.rs" diff --git a/src/uu/touch/Cargo.toml b/src/uu/touch/Cargo.toml index 3feea497e..00e5a1ebe 100644 --- a/src/uu/touch/Cargo.toml +++ b/src/uu/touch/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_touch" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "touch ~ (uutils) change FILE timestamps" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/touch" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/touch.rs" diff --git a/src/uu/tr/Cargo.toml b/src/uu/tr/Cargo.toml index 3f6d20fbc..cd98e9618 100644 --- a/src/uu/tr/Cargo.toml +++ b/src/uu/tr/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_tr" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "tr ~ (uutils) translate characters within input and display" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/tr" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/tr.rs" diff --git a/src/uu/truncate/Cargo.toml b/src/uu/truncate/Cargo.toml index c6a2398d4..092b4b360 100644 --- a/src/uu/truncate/Cargo.toml +++ b/src/uu/truncate/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_truncate" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "truncate ~ (uutils) truncate (or extend) FILE to SIZE" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/truncate" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/truncate.rs" diff --git a/src/uu/tsort/Cargo.toml b/src/uu/tsort/Cargo.toml index 91f9b354c..5385505de 100644 --- a/src/uu/tsort/Cargo.toml +++ b/src/uu/tsort/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_tsort" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "tsort ~ (uutils) topologically sort input (partially ordered) pairs" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/tsort" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/tsort.rs" diff --git a/src/uu/tty/Cargo.toml b/src/uu/tty/Cargo.toml index cf91cf031..ce071320b 100644 --- a/src/uu/tty/Cargo.toml +++ b/src/uu/tty/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_tty" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "tty ~ (uutils) display the name of the terminal connected to standard input" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/tty" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/tty.rs" diff --git a/src/uu/uname/Cargo.toml b/src/uu/uname/Cargo.toml index 74a54557f..daf1a8de2 100644 --- a/src/uu/uname/Cargo.toml +++ b/src/uu/uname/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_uname" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "uname ~ (uutils) display system information" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/uname" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/uname.rs" diff --git a/src/uu/unexpand/Cargo.toml b/src/uu/unexpand/Cargo.toml index 9241aba02..531cb782e 100644 --- a/src/uu/unexpand/Cargo.toml +++ b/src/uu/unexpand/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_unexpand" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "unexpand ~ (uutils) convert input spaces to tabs" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/unexpand" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/unexpand.rs" diff --git a/src/uu/uniq/Cargo.toml b/src/uu/uniq/Cargo.toml index 28b24bb67..783ad0be6 100644 --- a/src/uu/uniq/Cargo.toml +++ b/src/uu/uniq/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_uniq" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "uniq ~ (uutils) filter identical adjacent lines from input" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/uniq" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/uniq.rs" diff --git a/src/uu/unlink/Cargo.toml b/src/uu/unlink/Cargo.toml index f0c19d04a..29795871d 100644 --- a/src/uu/unlink/Cargo.toml +++ b/src/uu/unlink/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_unlink" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "unlink ~ (uutils) remove a (file system) link to FILE" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/unlink" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/unlink.rs" diff --git a/src/uu/uptime/Cargo.toml b/src/uu/uptime/Cargo.toml index cafec2bfd..d58f643c5 100644 --- a/src/uu/uptime/Cargo.toml +++ b/src/uu/uptime/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_uptime" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "uptime ~ (uutils) display dynamic system information" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/uptime" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/uptime.rs" diff --git a/src/uu/users/Cargo.toml b/src/uu/users/Cargo.toml index b0b985189..c0afdcae0 100644 --- a/src/uu/users/Cargo.toml +++ b/src/uu/users/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_users" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "users ~ (uutils) display names of currently logged-in users" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/users" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/users.rs" diff --git a/src/uu/wc/Cargo.toml b/src/uu/wc/Cargo.toml index 15d5ac090..5b4dbf59f 100644 --- a/src/uu/wc/Cargo.toml +++ b/src/uu/wc/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_wc" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "wc ~ (uutils) display newline, word, and byte counts for input" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/wc" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/wc.rs" diff --git a/src/uu/who/Cargo.toml b/src/uu/who/Cargo.toml index 2f5f9ef4c..c689caf07 100644 --- a/src/uu/who/Cargo.toml +++ b/src/uu/who/Cargo.toml @@ -1,8 +1,15 @@ [package] name = "uu_who" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" +description = "who ~ (uutils) display information about currently logged-in users" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/who" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/who.rs" diff --git a/src/uu/whoami/Cargo.toml b/src/uu/whoami/Cargo.toml index 50872acc6..711b92219 100644 --- a/src/uu/whoami/Cargo.toml +++ b/src/uu/whoami/Cargo.toml @@ -1,9 +1,15 @@ [package] name = "uu_whoami" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" -description = "Display effective user ID" +description = "whoami ~ (uutils) display user name of current effective user ID" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/whoami" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/whoami.rs" diff --git a/src/uu/yes/Cargo.toml b/src/uu/yes/Cargo.toml index 4719419a0..d06ebc250 100644 --- a/src/uu/yes/Cargo.toml +++ b/src/uu/yes/Cargo.toml @@ -1,9 +1,15 @@ [package] name = "uu_yes" version = "0.0.1" -authors = [] +authors = ["uutils developers"] license = "MIT" -description = "Repeatedly output a line with all specified STRING(s), or 'y'" +description = "yes ~ (uutils) repeatedly display a line with STRING (or 'y')" + +homepage = "https://github.com/uutils/coreutils" +repository = "https://github.com/uutils/coreutils/tree/master/src/uu/yes" +keywords = ["coreutils", "uutils", "cross-platform", "core", "cli", "util", "utility"] +categories = ["command-line-utilities"] +edition = "2018" [lib] path = "src/yes.rs"