Skip to content

Commit

Permalink
move from users => uzers
Browse files Browse the repository at this point in the history
  • Loading branch information
sylvestre committed Feb 25, 2024
1 parent c9478a3 commit bea0df4
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
24 changes: 12 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ tempfile = "3.10.0"
rand = { version = "0.8", features = ["small_rng"] }
utmpx = "0.2"
clap_mangen = "0.2.20"
users = "0.11"
uzers = "0.11"

[dependencies]
clap = { workspace = true }
Expand All @@ -57,7 +57,7 @@ uucore = { workspace = true }
phf = { workspace = true }
textwrap = { workspace = true }
xattr = { workspace = true }
users = { workspace = true }
uzers = { workspace = true }


#
Expand Down
2 changes: 1 addition & 1 deletion src/uu/getfacl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ edition = "2021"
uucore = { workspace = true }
clap = { workspace = true }
xattr = { workspace = true }
users = { workspace = true }
uzers = { workspace = true }

[lib]
path = "src/getfacl.rs"
Expand Down
2 changes: 1 addition & 1 deletion src/uu/getfacl/src/getfacl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
use clap::{crate_version, Arg, ArgAction, Command};
use std::fs;
use std::os::unix::fs::{MetadataExt, PermissionsExt};
use users::{get_group_by_gid, get_user_by_uid};
use uzers::{get_group_by_gid, get_user_by_uid};
use uucore::{error::UResult, help_about, help_usage};

const ABOUT: &str = help_about!("getfacl.md");
Expand Down

0 comments on commit bea0df4

Please sign in to comment.