From 2fecb5a665d3106bff8c6625f77283eb67199ffa Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 28 Oct 2022 23:37:24 +0000 Subject: [PATCH] build(deps): bump gethostname from 0.3.0 to 0.4.0 Bumps [gethostname](https://github.com/lunaryorn/gethostname.rs) from 0.3.0 to 0.4.0. - [Release notes](https://github.com/lunaryorn/gethostname.rs/releases) - [Changelog](https://github.com/lunaryorn/gethostname.rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/lunaryorn/gethostname.rs/compare/v0.3.0...v0.4.0) --- updated-dependencies: - dependency-name: gethostname dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 21 ++++++++++++++++++--- Cargo.toml | 2 +- 2 files changed, 19 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 39da45b..c749d6d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -815,12 +815,12 @@ dependencies = [ [[package]] name = "gethostname" -version = "0.3.0" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb65d4ba3173c56a500b555b532f72c42e8d1fe64962b518897f8959fae2c177" +checksum = "15e2ec67383ed0d1496d3dff6755fc14b6b019efd5238fb4eea7b62272d9863f" dependencies = [ "libc", - "winapi", + "windows", ] [[package]] @@ -2423,6 +2423,21 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" +[[package]] +name = "windows" +version = "0.43.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "04662ed0e3e5630dfa9b26e4cb823b817f1a9addda855d973a9458c236556244" +dependencies = [ + "windows_aarch64_gnullvm", + "windows_aarch64_msvc 0.42.0", + "windows_i686_gnu 0.42.0", + "windows_i686_msvc 0.42.0", + "windows_x86_64_gnu 0.42.0", + "windows_x86_64_gnullvm", + "windows_x86_64_msvc 0.42.0", +] + [[package]] name = "windows-sys" version = "0.36.1" diff --git a/Cargo.toml b/Cargo.toml index 5567905..0ca5a3f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -82,7 +82,7 @@ prettytable-rs = {version = "0.9", default-features = false } bytesize = "1" indicatif = "0.17" path-absolutize = "3" -gethostname = "0.3" +gethostname = "0.4" humantime = "2" users = "0.11" itertools = "0.10"