diff --git a/Cargo.lock b/Cargo.lock index 4ceb0edfc7..f2900c6cd3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5477,9 +5477,12 @@ dependencies = [ [[package]] name = "umask" -version = "2.0.0" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "46b0c16eadfb312c7acd6970fc97d1f3152eb536714a2ff72ca09a92cae6fa67" +checksum = "ec9a46c2549e35c054e0ffe281a3a6ec0007793db4df106604d37ed3f4d73d1c" +dependencies = [ + "thiserror", +] [[package]] name = "unicase" diff --git a/crates/nu-command/Cargo.toml b/crates/nu-command/Cargo.toml index 2801519a25..911f2dcac9 100644 --- a/crates/nu-command/Cargo.toml +++ b/crates/nu-command/Cargo.toml @@ -106,7 +106,7 @@ winreg = "0.50.0" [target.'cfg(unix)'.dependencies] libc = "0.2" -umask = "2.0.0" +umask = "2.1.0" users = "0.11.0" [target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies.trash]