diff options
author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | 2024-05-17 10:55:58 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-17 10:55:58 +0000 |
commit | 8dc38e8fc69e7e0388b1f5cc803556199e4223c1 (patch) | |
tree | 7635b9fd31a61e3ec8f0fddb7a6aa47350d0328e | |
parent | 08633c8528018bf37c3a7f144ab1a1cbf38288cc (diff) |
chore(deps): bump the dependencies group across 1 directory with 4 updatesdependabot/cargo/dependencies-14ee423eb8
Bumps the dependencies group with 4 updates in the / directory: [anyhow](https://github.com/dtolnay/anyhow), [chrono](https://github.com/chronotope/chrono), [itertools](https://github.com/rust-itertools/itertools) 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 `itertools` from 0.12.1 to 0.13.0
- [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-itertools/itertools/compare/v0.12.1...v0.13.0)
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: itertools
dependency-type: direct:production
update-type: version-update:semver-minor
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.lock | 29 | ||||
-rw-r--r-- | gping/Cargo.toml | 6 | ||||
-rw-r--r-- | pinger/Cargo.toml | 4 |
3 files changed, 24 insertions, 15 deletions
@@ -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", @@ -321,7 +321,7 @@ dependencies = [ "const_format", "crossterm", "dns-lookup", - "itertools", + "itertools 0.13.0", "pinger", "ratatui", "shadow-rs", @@ -394,6 +394,15 @@ dependencies = [ ] [[package]] +name = "itertools" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" +dependencies = [ + "either", +] + +[[package]] name = "itoa" version = "1.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -640,7 +649,7 @@ dependencies = [ "compact_str", "crossterm", "indoc", - "itertools", + "itertools 0.12.1", "lru", "paste", "stability", @@ -850,18 +859,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..bd04422 100644 --- a/gping/Cargo.toml +++ b/gping/Cargo.toml @@ -13,10 +13,10 @@ 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" -itertools = "0.12.1" +chrono = "0.4.38" +itertools = "0.13.0" shadow-rs = { version = "0.27.1", default_features = false } const_format = "0.2.32" clap = { version = "4.5.4", features = ["derive"] } 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" |