Skip to content

Commit

Permalink
add missing metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
sylvestre committed Feb 17, 2024
1 parent 67b1809 commit eaa8af0
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 4 deletions.
9 changes: 8 additions & 1 deletion src/uu/free/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,15 @@
name = "uu_free"
version = "0.0.1"
edition = "2021"
authors = ["uutils developers"]
license = "MIT"
description = "free ~ (uutils) Display amount of free and used memory in the system"

homepage = "https://github.com/uutils/procps"
repository = "https://github.com/uutils/procps/tree/main/src/uu/free"
keywords = ["acl", "uutils", "cross-platform", "cli", "utility"]
categories = ["command-line-utilities"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
uucore = { workspace = true }
Expand Down
9 changes: 9 additions & 0 deletions src/uu/pmap/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
name = "uu_pmap"
version = "0.0.1"
edition = "2021"
authors = ["uutils developers"]
license = "MIT"
description = "pmap ~ (uutils) Report memory map of a process"

homepage = "https://github.com/uutils/procps"
repository = "https://github.com/uutils/procps/tree/main/src/uu/pmap"
keywords = ["acl", "uutils", "cross-platform", "cli", "utility"]
categories = ["command-line-utilities"]


[dependencies]
uucore = { workspace = true }
Expand Down
8 changes: 7 additions & 1 deletion src/uu/pwdx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,14 @@
name = "uu_pwdx"
version = "0.0.1"
edition = "2021"
authors = ["uutils developers"]
license = "MIT"
description = "pwdx ~ (uutils) Report current working directory of a process"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
homepage = "https://github.com/uutils/procps"
repository = "https://github.com/uutils/procps/tree/main/src/uu/pwdx"
keywords = ["acl", "uutils", "cross-platform", "cli", "utility"]
categories = ["command-line-utilities"]

[dependencies]
uucore = { workspace = true }
Expand Down
8 changes: 7 additions & 1 deletion src/uu/w/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,14 @@
name = "uu_w"
version = "0.0.1"
edition = "2021"
authors = ["uutils developers"]
license = "MIT"
description = "w ~ (uutils) Show who is logged on and what they are doing"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
homepage = "https://github.com/uutils/procps"
repository = "https://github.com/uutils/procps/tree/main/src/uu/w"
keywords = ["acl", "uutils", "cross-platform", "cli", "utility"]
categories = ["command-line-utilities"]

[dependencies]
uucore = { workspace = true, features = ["utmpx"] }
Expand Down
8 changes: 7 additions & 1 deletion src/uu/watch/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,14 @@
name = "uu_watch"
version = "0.0.1"
edition = "2021"
authors = ["uutils developers"]
license = "MIT"
description = "watch ~ (uutils) Execute a program periodically, showing output fullscreen"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
homepage = "https://github.com/uutils/procps"
repository = "https://github.com/uutils/procps/tree/main/src/uu/watch"
keywords = ["acl", "uutils", "cross-platform", "cli", "utility"]
categories = ["command-line-utilities"]

[dependencies]
uucore = { workspace = true }
Expand Down

0 comments on commit eaa8af0

Please sign in to comment.