summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2024-05-07 11:05:29 +0000
committerGitHub <noreply@github.com>2024-05-07 11:05:29 +0000
commitdc5382dd2f7a39ba9d497a4c896128014c0169d5 (patch)
tree25784c35a0cfdded6641a24eb6e2029b007e1c9d
parent08633c8528018bf37c3a7f144ab1a1cbf38288cc (diff)
chore(deps): bump the dependencies group across 1 directory with 3 updatesdependabot/cargo/dependencies-bfdca92cdf
Bumps the dependencies group with 3 updates in the / directory: [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.83 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.81...1.0.83) 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.60 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.58...1.0.60) --- 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..fefdd6a 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -94,9 +94,9 @@ dependencies = [
[[package]]
name = "anyhow"
-version = "1.0.81"
+version = "1.0.83"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0952808a6c2afd1aa8947271f3a60f1a6763c7b912d210184c5149b5cf147247"
+checksum = "25bdb32cbbdce2b519a9cd7df3a678443100e265d5e25ca763b7572a5104f5f3"
[[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.60"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "03468839009160513471e86a034bb2c5c0e4baae3b43f79ffc55c4a5427b3297"
+checksum = "579e9083ca58dd9dcf91a9923bb9054071b9ebbd800b342194c9feb0ee89fc18"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
-version = "1.0.58"
+version = "1.0.60"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c61f3ba182994efc43764a46c018c347bc492c79f024e705f46567b418f6d4f7"
+checksum = "e2470041c06ec3ac1ab38d0356a6119054dedaea53e12fbefc0de730a1c08524"
dependencies = [
"proc-macro2",
"quote",
diff --git a/gping/Cargo.toml b/gping/Cargo.toml
index 9e1eb54..d4f77ff 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.83"
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..e32107f 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.83"
+thiserror = "1.0.60"
rand = "0.8.5"
lazy-regex = "3.1.0"