diff options
author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | 2024-09-06 10:40:24 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-06 10:40:24 +0000 |
commit | 00644152baf8095cec5c41f3ead7c315e2654eb7 (patch) | |
tree | b695991042183328117758e9f07cac645e6cec0a | |
parent | 63b18d5e6d4dd8221841093592ab304850ad810a (diff) |
chore(deps): bump the dependencies group across 1 directory with 3 updatesdependabot/cargo/dependencies-88f4e474b7
Bumps the dependencies group with 3 updates in the / directory: [shadow-rs](https://github.com/baoyachi/shadow-rs), [const_format](https://github.com/rodrimati1992/const_format_crates) and [clap](https://github.com/clap-rs/clap).
Updates `shadow-rs` from 0.33.0 to 0.34.0
- [Release notes](https://github.com/baoyachi/shadow-rs/releases)
- [Commits](https://github.com/baoyachi/shadow-rs/compare/v0.33.0...v0.34.0)
Updates `const_format` from 0.2.32 to 0.2.33
- [Release notes](https://github.com/rodrimati1992/const_format_crates/releases)
- [Changelog](https://github.com/rodrimati1992/const_format_crates/blob/master/Changelog.md)
- [Commits](https://github.com/rodrimati1992/const_format_crates/commits)
Updates `clap` from 4.5.16 to 4.5.17
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.16...clap_complete-v4.5.17)
---
updated-dependencies:
- dependency-name: shadow-rs
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: dependencies
- dependency-name: const_format
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: dependencies
- dependency-name: clap
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 | 20 | ||||
-rw-r--r-- | gping/Cargo.toml | 8 |
2 files changed, 14 insertions, 14 deletions
@@ -169,9 +169,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.5.16" +version = "4.5.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed6719fffa43d0d87e5fd8caeab59be1554fb028cd30edc88fc4369b17971019" +checksum = "3e5a21b8495e732f1b3c364c9949b201ca7bae518c502c80256c96ad79eaf6ac" dependencies = [ "clap_builder", "clap_derive", @@ -179,9 +179,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.5.15" +version = "4.5.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "216aec2b177652e3846684cbfe25c9964d18ec45234f0f5da5157b207ed1aab6" +checksum = "8cf2dd12af7a047ad9d6da2b6b249759a22a7abc0f474c1dae1777afa4b21a73" dependencies = [ "anstream", "anstyle", @@ -229,18 +229,18 @@ dependencies = [ [[package]] name = "const_format" -version = "0.2.32" +version = "0.2.33" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3a214c7af3d04997541b18d432afaff4c455e79e2029079647e72fc2bd27673" +checksum = "50c655d81ff1114fb0dcdea9225ea9f0cc712a6f8d189378e82bdf62a473a64b" dependencies = [ "const_format_proc_macros", ] [[package]] name = "const_format_proc_macros" -version = "0.2.32" +version = "0.2.33" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c7f6ff08fd20f4f299298a28e2dfa8a8ba1036e6cd2460ac1de7b425d76f2500" +checksum = "eff1a44b93f47b1bac19a27932f5c591e43d1ba357ee4f61526c8a25603f0eb1" dependencies = [ "proc-macro2", "quote", @@ -776,9 +776,9 @@ dependencies = [ [[package]] name = "shadow-rs" -version = "0.33.0" +version = "0.34.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a3978e7641f86a78c2f619f9b13bdffb4e43a1d5119f39eb03d1bc5ac61daaf" +checksum = "69fe0bac8a8752586a618a1c80d01d8ca5d40fce4f6077fbc851e48dcbdb90df" dependencies = [ "const_format", "is_debug", diff --git a/gping/Cargo.toml b/gping/Cargo.toml index 1bcd827..5317556 100644 --- a/gping/Cargo.toml +++ b/gping/Cargo.toml @@ -17,9 +17,9 @@ anyhow = "1.0.81" dns-lookup = "2.0.0" chrono = "0.4.37" itertools = "0.13.0" -shadow-rs = { version = "0.33.0", default-features = false } -const_format = "0.2.32" -clap = { version = "4.5.4", features = ["derive"] } +shadow-rs = { version = "0.34.0", default-features = false } +const_format = "0.2.33" +clap = { version = "4.5.17", features = ["derive"] } [build-dependencies] -shadow-rs = { version = "0.33.0", default-features = false } +shadow-rs = { version = "0.34.0", default-features = false } |