From 86596baedb96f23e16743b1be3f7fb72ee0a3cd2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 27 Dec 2023 10:19:09 +0000 Subject: [PATCH] chore(deps): bump the dependencies group with 2 updates Bumps the dependencies group with 2 updates: [anyhow](https://github.com/dtolnay/anyhow) and [thiserror](https://github.com/dtolnay/thiserror). Updates `anyhow` from 1.0.75 to 1.0.77 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.75...1.0.77) Updates `thiserror` from 1.0.50 to 1.0.52 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.50...1.0.52) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] --- Cargo.lock | 12 ++++++------ gping/Cargo.toml | 2 +- pinger/Cargo.toml | 4 ++-- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 13b385e8d..935dfbdc9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -94,9 +94,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.75" +version = "1.0.77" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6" +checksum = "c9d19de80eff169429ac1e9f48fffb163916b448a44e8e046186232046d9e1f9" [[package]] name = "autocfg" @@ -885,18 +885,18 @@ dependencies = [ [[package]] name = "thiserror" -version = "1.0.50" +version = "1.0.52" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f9a7210f5c9a7156bb50aa36aed4c95afb51df0df00713949448cf9e97d382d2" +checksum = "83a48fd946b02c0a526b2e9481c8e2a17755e47039164a86c4070446e3a4614d" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.50" +version = "1.0.52" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "266b2e40bc00e5a6c09c3584011e08b06f123c00362c92b975ba9843aaaa14b8" +checksum = "e7fbe9b594d6568a6a1443250a7e67d80b74e1e96f6d1715e1e21cc1888291d3" dependencies = [ "proc-macro2", "quote", diff --git a/gping/Cargo.toml b/gping/Cargo.toml index 1c0f1d87f..f5bfd9aab 100644 --- a/gping/Cargo.toml +++ b/gping/Cargo.toml @@ -13,7 +13,7 @@ readme = "../readme.md" pinger = { version = "^1.1.0", path = "../pinger" } tui = { package = "ratatui", version = "0.24.0", features = ["crossterm"], default_features = false } crossterm = "0.27.0" -anyhow = "1.0.75" +anyhow = "1.0.77" dns-lookup = "2.0.0" chrono = "0.4.31" itertools = "0.12.0" diff --git a/pinger/Cargo.toml b/pinger/Cargo.toml index 7d639840b..f7cbf9a03 100644 --- a/pinger/Cargo.toml +++ b/pinger/Cargo.toml @@ -8,8 +8,8 @@ description = "A small cross-platform library to execute the ping command and pa repository = "https://github.com/orf/pinger/" [dependencies] -anyhow = "1.0.75" -thiserror = "1.0.50" +anyhow = "1.0.77" +thiserror = "1.0.52" rand = "0.8.5" lazy-regex = "3.1.0"