From 16f68c23974f069facfba4a78babaa9d96b00700 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 2 Sep 2024 10:21:19 +0200 Subject: [PATCH] chore(deps): update rust crate gethostname to 0.5 (#1522) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- Cargo.lock | 14 ++++++++++++-- plugins/os/Cargo.toml | 2 +- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7bee5e47..af62bc52 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2429,6 +2429,16 @@ dependencies = [ "windows-targets 0.48.5", ] +[[package]] +name = "gethostname" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc3655aa6818d65bc620d6911f05aa7b6aeb596291e1e9f79e52df85583d1e30" +dependencies = [ + "rustix", + "windows-targets 0.52.6", +] + [[package]] name = "getrandom" version = "0.1.16" @@ -6766,7 +6776,7 @@ dependencies = [ name = "tauri-plugin-os" version = "2.0.0-rc.1" dependencies = [ - "gethostname", + "gethostname 0.5.0", "log", "os_info", "serde", @@ -8627,7 +8637,7 @@ version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5d91ffca73ee7f68ce055750bf9f6eca0780b8c85eff9bc046a3b0da41755e12" dependencies = [ - "gethostname", + "gethostname 0.4.3", "rustix", "x11rb-protocol", ] diff --git a/plugins/os/Cargo.toml b/plugins/os/Cargo.toml index 61a7177a..b7152ea7 100644 --- a/plugins/os/Cargo.toml +++ b/plugins/os/Cargo.toml @@ -24,5 +24,5 @@ log = { workspace = true } thiserror = { workspace = true } os_info = "3" sys-locale = "0.3" -gethostname = "0.4" +gethostname = "0.5" serialize-to-javascript = "=0.1.1"