From 5afc49250f00267b1c9e399f8ce99895715e96e8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 14 Apr 2023 12:15:22 +0000 Subject: [PATCH] Bump umask from 2.0.0 to 2.1.0 (#8835) --- Cargo.lock | 7 +++++-- crates/nu-command/Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) 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]