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 bf182f4 commit b111f92
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ name = "acl"
version = "0.0.1"
authors = ["uutils developers"]
license = "MIT"
description = "acl ~ GNU acl (updated); implemented as universal (cross-platform) utils, written in Rust"
description = "acl ~ GNU acl; implemented as universal (cross-platform) utils, written in Rust"
default-run = "acl"

homepage = "https://github.com/uutils/acl"
Expand Down
8 changes: 7 additions & 1 deletion src/uu/chacl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,14 @@
name = "uu_chacl"
version = "0.0.1"
edition = "2021"
authors = ["uutils developers"]
license = "MIT"
description = "chacl ~ (uutils) Change the access control list of a file or directory"

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

[dependencies]
uucore = { workspace = true }
Expand Down
8 changes: 8 additions & 0 deletions src/uu/getfacl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
[package]
name = "uu_getfacl"
version = "0.0.1"
authors = ["uutils developers"]
license = "MIT"
description = "getfacl ~ (uutils) Get file access control lists"

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

[dependencies]
Expand Down
10 changes: 8 additions & 2 deletions src/uu/setfacl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
[package]
name = "uu_setfacl"
version = "0.0.1"
edition = "2021"
authors = ["uutils developers"]
license = "MIT"
description = "setfacl ~ (uutils) Set file access control lists"

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

[dependencies]
uucore = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion src/uu/setfacl/setfacl.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ setfacl [-bkndRLPvh] [{-m|-x} acl_spec] [{-M|-X} acl_file] file ...
setfacl --restore={file|-}
```

set file access control lists
Set file access control lists

0 comments on commit b111f92

Please sign in to comment.