docs ~ add meta information to sub-crates

This commit is contained in:
Roy Ivy III
2020-05-29 22:59:47 -05:00
parent 6cb609aeee
commit 7cfa8be5f2
76 changed files with 561 additions and 70 deletions
+5 -1
View File
@@ -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"
+5 -1
View File
@@ -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"
+5 -1
View File
@@ -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"
+5 -1
View File
@@ -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"
+5 -1
View File
@@ -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"
+5 -1
View File
@@ -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"
+5 -1
View File
@@ -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"
+5 -1
View File
@@ -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"
+5 -1
View File
@@ -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"
+5 -1
View File
@@ -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"
+5 -1
View File
@@ -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"
+5
View File
@@ -4,8 +4,13 @@ version = "0.0.1"
authors = [
"Jordy Dickinson <jordy.dickinson@gmail.com>",
"Joshua S. Miller <jsmiller@uchicago.edu>",
"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"
+5 -1
View File
@@ -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"
+7
View File
@@ -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"
+7
View File
@@ -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"
+7
View File
@@ -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"
+7
View File
@@ -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"
+7
View File
@@ -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"
+4 -1
View File
@@ -1,7 +1,10 @@
[package]
name = "uu_install"
version = "0.0.1"
authors = ["Ben Eills <ben@beneills.com>"]
authors = [
"Ben Eills <ben@beneills.com>",
"uutils developers",
]
license = "MIT"
[lib]
+7
View File
@@ -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"

Some files were not shown because too many files have changed in this diff Show More