summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2024-04-22 10:27:05 +0000
committerGitHub <noreply@github.com>2024-04-22 10:27:05 +0000
commitf2041eb7a4ece5f9bd32f991bffa2d539714371d (patch)
tree361f81e60fe4e58779086eb92b0b8c443d993027
parent08633c8528018bf37c3a7f144ab1a1cbf38288cc (diff)
chore(deps): bump the dependencies group with 3 updatesdependabot/cargo/dependencies-74a59c2868
Bumps the dependencies group with 3 updates: [anyhow](https://github.com/dtolnay/anyhow), [chrono](https://github.com/chronotope/chrono) and [thiserror](https://github.com/dtolnay/thiserror). Updates `anyhow` from 1.0.81 to 1.0.82 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.81...1.0.82) Updates `chrono` from 0.4.37 to 0.4.38 - [Release notes](https://github.com/chronotope/chrono/releases) - [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md) - [Commits](https://github.com/chronotope/chrono/compare/v0.4.37...v0.4.38) Updates `thiserror` from 1.0.58 to 1.0.59 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.58...1.0.59) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: chrono 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] <support@github.com>
-rw-r--r--Cargo.lock16
-rw-r--r--gping/Cargo.toml4
-rw-r--r--pinger/Cargo.toml4
3 files changed, 12 insertions, 12 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 80a3fc7..9f6de99 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -94,9 +94,9 @@ dependencies = [
[[package]]
name = "anyhow"
-version = "1.0.81"
+version = "1.0.82"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0952808a6c2afd1aa8947271f3a60f1a6763c7b912d210184c5149b5cf147247"
+checksum = "f538837af36e6f6a9be0faa67f9a314f8119e4e4b5867c6ab40ed60360142519"
[[package]]
name = "autocfg"
@@ -151,9 +151,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "chrono"
-version = "0.4.37"
+version = "0.4.38"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8a0d04d43504c61aa6c7531f1871dd0d418d91130162063b789da00fd7057a5e"
+checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401"
dependencies = [
"android-tzdata",
"iana-time-zone",
@@ -850,18 +850,18 @@ dependencies = [
[[package]]
name = "thiserror"
-version = "1.0.58"
+version = "1.0.59"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "03468839009160513471e86a034bb2c5c0e4baae3b43f79ffc55c4a5427b3297"
+checksum = "f0126ad08bff79f29fc3ae6a55cc72352056dfff61e3ff8bb7129476d44b23aa"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
-version = "1.0.58"
+version = "1.0.59"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c61f3ba182994efc43764a46c018c347bc492c79f024e705f46567b418f6d4f7"
+checksum = "d1cd413b5d558b4c5bf3680e324a6fa5014e7b7c067a51e69dbdf47eb7148b66"
dependencies = [
"proc-macro2",
"quote",
diff --git a/gping/Cargo.toml b/gping/Cargo.toml
index 9e1eb54..960ff1a 100644
--- a/gping/Cargo.toml
+++ b/gping/Cargo.toml
@@ -13,9 +13,9 @@ readme = "../readme.md"
pinger = { version = "^1.1.1", path = "../pinger" }
tui = { package = "ratatui", version = "0.26.0", features = ["crossterm"], default_features = false }
crossterm = "0.27.0"
-anyhow = "1.0.81"
+anyhow = "1.0.82"
dns-lookup = "2.0.0"
-chrono = "0.4.37"
+chrono = "0.4.38"
itertools = "0.12.1"
shadow-rs = { version = "0.27.1", default_features = false }
const_format = "0.2.32"
diff --git a/pinger/Cargo.toml b/pinger/Cargo.toml
index 06d537d..a1ba350 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.81"
-thiserror = "1.0.58"
+anyhow = "1.0.82"
+thiserror = "1.0.59"
rand = "0.8.5"
lazy-regex = "3.1.0"