Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump the deps group across 1 directory with 17 updates #143

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 1, 2025

Bumps the deps group with 17 updates in the / directory:

Package From To
ansi-to-tui 4.0.1 4.1.0
anyhow 1.0.86 1.0.95
chrono 0.4.38 0.4.39
clap 4.5.8 4.5.13
globset 0.4.14 0.4.15
ignore 0.4.22 0.4.23
indexmap 2.2.6 2.7.0
lade-sdk 0.11.2 0.11.5
openssl 0.10.66 0.10.68
notify 6.1.1 7.0.0
regex 1.10.5 1.11.1
self_update 0.40.0 0.42.0
serde 1.0.203 1.0.217
tokio 1.38.0 1.42.0
url 2.5.2 2.5.4
assert_cmd 2.0.14 2.0.16
semver 1.0.23 1.0.24

Updates ansi-to-tui from 4.0.1 to 4.1.0

Commits

Updates anyhow from 1.0.86 to 1.0.95

Release notes

Sourced from anyhow's releases.

1.0.95

1.0.94

  • Documentation improvements

1.0.93

  • Update dev-dependencies to thiserror v2

1.0.92

  • Support Rust 1.82's &raw const and &raw mut syntax inside ensure! (#390)

1.0.91

  • Ensure OUT_DIR is left with deterministic contents after build script execution (#388)

1.0.90

  • Documentation improvements

1.0.89

  • Make anyhow::Error's UnwindSafe and RefUnwindSafe impl consistently available between versions of Rust newer and older than 1.72 (#386)

1.0.88

  • Documentation improvements

1.0.87

  • Support more APIs, including Error::new and Error::chain, in no-std mode on Rust 1.81+ (#383)
Commits
  • 48be1ca Release 1.0.95
  • a03d6d6 Merge pull request #402 from dtolnay/fromboxed
  • 52e4abb Add Error::from_boxed with documentation about bidirectional ?
  • ffecefc Merge pull request #401 from dtolnay/construct
  • 671f700 Add construct_ prefix to name of private construct functions
  • 8ceb5e9 Release 1.0.94
  • b9009ab Merge pull request #399 from dtolnay/okvalue
  • 863791a Align naming between Ok function argument and its documentation
  • 2081692 Merge pull request #398 from zertosh/ok_doc_format
  • cc2cecb Fix anyhow::Ok rustdoc code formatting
  • Additional commits viewable in compare view

Updates chrono from 0.4.38 to 0.4.39

Release notes

Sourced from chrono's releases.

0.4.39

What's Changed

Commits

Updates clap from 4.5.8 to 4.5.13

Release notes

Sourced from clap's releases.

v4.5.13

[4.5.13] - 2024-07-31

Fixes

  • (derive) Improve error message when #[flatten]ing an optional #[group(skip)]
  • (help) Properly wrap long subcommand descriptions in help

v4.5.12

[4.5.12] - 2024-07-31

v4.5.10

[4.5.10] - 2024-07-23

v4.5.9

[4.5.9] - 2024-07-09

Fixes

  • (error) When defining a custom help flag, be sure to suggest it like we do the built-in one
Changelog

Sourced from clap's changelog.

[4.5.13] - 2024-07-31

Fixes

  • (derive) Improve error message when #[flatten]ing an optional #[group(skip)]
  • (help) Properly wrap long subcommand descriptions in help

[4.5.12] - 2024-07-31

[4.5.11] - 2024-07-25

[4.5.10] - 2024-07-23

[4.5.9] - 2024-07-09

Fixes

  • (error) When defining a custom help flag, be sure to suggest it like we do the built-in one
Commits
  • d222ae4 chore: Release
  • a8abcb4 docs: Update changelog
  • 2690e1b Merge pull request #5621 from shannmu/dynamic_valuehint
  • 7fd7b3e feat(clap_complete): Support to complete custom value of argument
  • fc6aaca Merge pull request #5638 from epage/cargo
  • 631e54b docs(cookbook): Style cargo plugin
  • 6fb49d0 Merge pull request #5636 from gibfahn/styles_const
  • 6f215ee refactor(styles): make styles example use a const
  • bbb2e6f test: Add test case for completing custom value of argument
  • 999071c fix: Change visible to hidden
  • Additional commits viewable in compare view

Updates globset from 0.4.14 to 0.4.15

Commits
  • 5680183 ignore-0.4.15
  • b458cf3 deps: update to base64 0.12
  • 793c117 ignore: allow filtering with predicate
  • df7a3bf grep-cli: support files compressed by compress(1)
  • 28f2a93 doc: shorten -h/--help prelude
  • 64a4dee cli: improve invalid UTF-8 pattern error message
  • 50840ea doc: note how to escape a '$' in --replace
  • 17dcc2b doc: clarify that files override gitignores
  • 9a858e4 doc: add config file note for --type-{add,clear}
  • 7ed9a31 printer: fix --count-matches output
  • Additional commits viewable in compare view

Updates ignore from 0.4.22 to 0.4.23

Commits

Updates indexmap from 2.2.6 to 2.7.0

Changelog

Sourced from indexmap's changelog.

2.7.0 (2024-11-30)

  • Added methods Entry::insert_entry and VacantEntry::insert_entry, returning an OccupiedEntry after insertion.

2.6.0 (2024-10-01)

  • Implemented Clone for map::IntoIter and set::IntoIter.
  • Updated the hashbrown dependency to version 0.15.

2.5.0 (2024-08-30)

  • Added an insert_before method to IndexMap and IndexSet, as an alternative to shift_insert with different behavior on existing entries.
  • Added first_entry and last_entry methods to IndexMap.
  • Added From implementations between IndexedEntry and OccupiedEntry.

2.4.0 (2024-08-13)

  • Added methods IndexMap::append and IndexSet::append, moving all items from one map or set into another, and leaving the original capacity for reuse.

2.3.0 (2024-07-31)

  • Added trait MutableEntryKey for opt-in mutable access to map entry keys.
  • Added method MutableKeys::iter_mut2 for opt-in mutable iteration of map keys and values.
Commits

Updates lade-sdk from 0.11.2 to 0.11.5

Release notes

Sourced from lade-sdk's releases.

v0.11.5

What's Changed

New features 🎉

Full Changelog: zifeo/lade@v0.11.4...v0.11.5

v0.11.4

What's Changed

New features 🎉

Full Changelog: zifeo/lade@v0.11.3...v0.11.4

v0.11.3

What's Changed

New features 🎉

New Contributors

Full Changelog: zifeo/lade@v0.11.2...v0.11.3

Commits
  • b959b30 feat: add minimal support for sh (#95)
  • 7a1c0a8 chore: prepare release 0.11.5-beta.1 (#94)
  • 2f72f76 feat: upgrade and aarch64 musl support (#93)
  • d883742 chore(deps): bump peter-evans/create-pull-request from 6 to 7 (#92)
  • 71b9c69 chore: prepare release 0.11.4-beta.1 (#90)
  • 9665c37 fix: loosen sdk deps version range (#88)
  • 8ae18b6 fix: add infisical project id (#86)
  • 1d4a132 chore(deps): update self_update requirement from 0.40.0 to 0.41.0 (#85)
  • 43cec33 chore: Update README.md
  • 28a61c7 chore(deps): update itertools requirement from 0.12.1 to 0.13.0 (#83)
  • Additional commits viewable in compare view

Updates openssl from 0.10.66 to 0.10.68

Release notes

Sourced from openssl's releases.

openssl-v0.10.68

What's Changed

Full Changelog: sfackler/rust-openssl@openssl-v0.10.67...openssl-v0.10.68

openssl-v0.10.67

What's Changed

New Contributors

Full Changelog: sfackler/rust-openssl@openssl-v0.10.66...openssl-v0.10.67

Commits
  • be8dcfd Merge pull request #2318 from alex/msrv-fix
  • 065cc77 fixes #2317 -- restore compatibility with our MSRV and release openssl 0.9.68
  • 7b3ec80 Merge pull request #2316 from alex/bump-for-release
  • b510e8c Release openssl v0.10.67 and openssl-sys v0.9.104
  • ee3b024 Merge pull request #2315 from botovq/libressl-4.0.0
  • c4dabc2 CI: Update LibreSSL CI
  • f9027b7 LibreSSL 4.0.0 is released & stable
  • 1b51ba5 Merge pull request #2313 from sfackler/sfackler-patch-1
  • de8a97c Bump to 3.4.0-beta1
  • 3930464 Merge pull request #2312 from sfackler/alex-patch-1
  • Additional commits viewable in compare view

Updates notify from 6.1.1 to 7.0.0

Release notes

Sourced from notify's releases.

notify-7.0.0

file-id 0.2.2 (2024-10-25)

  • CHANGE: get file stats without read permission #625

#625: notify-rs/notify#625

notify 7.0.0 (2024-10-25)

  • CHANGE: raise MSRV to 1.72 #569 #610 breaking
  • CHANGE: move event type to notify-types crate #559
  • CHANGE: flatten serialization of events and use camelCase #558
  • CHANGE: remove internal use of crossbeam channels #569 #610
  • CHANGE: rename feature crossbeam to crossbeam-channel and disable it by default #610 breaking
  • CHANGE: upgrade mio to 1.0 #623
  • CHANGE: add log statements #499
  • FIX: prevent UB with illegal instruction for the windows backend #604 #607
  • FIX: on Linux report deleted directories correctly #545
  • FIX: on Linux report access open events #612
  • FEATURE: enable kqueue on iOS #533
  • MISC: various minor doc updates and fixes #535 #536 #543 #565 #592 #595
  • MISC: update inotify to 0.10 #547

#499: notify-rs/notify#499 #533: notify-rs/notify#533 #535: notify-rs/notify#535 #536: notify-rs/notify#536 #543: notify-rs/notify#543 #545: notify-rs/notify#545 #547: notify-rs/notify#547 #558: notify-rs/notify#558 #559: notify-rs/notify#559 #565: notify-rs/notify#565 #569: notify-rs/notify#569 #592: notify-rs/notify#592 #595: notify-rs/notify#595 #604: notify-rs/notify#604 #607: notify-rs/notify#607 #610: notify-rs/notify#610 #612: notify-rs/notify#612 #623: notify-rs/notify#623

notify-types 1.0.0 (2024-10-25)

New crate containing public type definitions for the notify and debouncer crates. #559

  • CHANGE: the serialization format for events has been changed to be easier to use in environments like JavaScript; the old behavior can be restored using the new feature flag serialization-compat-6 #558 #568 breaking
  • CHANGE: use instant crate (which provides an Instant type that works in Wasm environments) #570

... (truncated)

Changelog

Sourced from notify's changelog.

notify 7.0.0 (2024-10-25)

  • CHANGE: raise MSRV to 1.72 #569 #610 breaking
  • CHANGE: move event type to notify-types crate #559
  • CHANGE: flatten serialization of events and use camelCase #558
  • CHANGE: remove internal use of crossbeam channels #569 #610
  • CHANGE: rename feature crossbeam to crossbeam-channel and disable it by default #610 breaking
  • CHANGE: upgrade mio to 1.0 #623
  • CHANGE: add log statements #499
  • FIX: prevent UB with illegal instruction for the windows backend #604 #607
  • FIX: on Linux report deleted directories correctly #545
  • FIX: on Linux report access open events #612
  • FEATURE: enable kqueue on iOS #533
  • MISC: various minor doc updates and fixes #535 #536 #543 #565 #592 #595
  • MISC: update inotify to 0.10 #547

#499: notify-rs/notify#499 #533: notify-rs/notify#533 #535: notify-rs/notify#535 #536: notify-rs/notify#536 #543: notify-rs/notify#543 #545: notify-rs/notify#545 #547: notify-rs/notify#547 #558: notify-rs/notify#558 #559: notify-rs/notify#559 #565: notify-rs/notify#565 #569: notify-rs/notify#569 #592: notify-rs/notify#592 #595: notify-rs/notify#595 #604: notify-rs/notify#604 #607: notify-rs/notify#607 #610: notify-rs/notify#610 #612: notify-rs/notify#612 #623: notify-rs/notify#623

notify-types 1.0.0 (2024-10-25)

New crate containing public type definitions for the notify and debouncer crates. #559

  • CHANGE: the serialization format for events has been changed to be easier to use in environments like JavaScript; the old behavior can be restored using the new feature flag serialization-compat-6 #558 #568 breaking
  • CHANGE: use instant crate (which provides an Instant type that works in Wasm environments) #570

#558: notify-rs/notify#558 #559: notify-rs/notify#559 #568: notify-rs/notify#568 #570: notify-rs/notify#570

debouncer-mini 0.5.0 (2024-10-25)

... (truncated)

Commits

Updates regex from 1.10.5 to 1.11.1

Changelog

Sourced from regex's changelog.

1.11.1 (2024-10-24)

This is a new patch release of regex that fixes compilation on nightly Rust when the unstable pattern crate feature is enabled. Users on nightly Rust without this feature enabled are unaffected.

Bug fixes:

1.11.0 (2024-09-29)

This is a new minor release of regex that brings in an update to the Unicode Character Database. Specifically, this updates the Unicode data used by regex internally to the version 16 release.

New features:

1.10.6 (2024-08-02)

This is a new patch release with a fix for the unstable crate feature that enables std::str::Pattern trait integration.

Bug fixes:

Commits

Updates self_update from 0.40.0 to 0.42.0

Changelog

Sourced from self_update's changelog.

[0.42.0]

Added

  • Improved release search/lookup capability to support filtering assets by identifier
  • Improved version specifications to support prelease tags and parallel supported versions

Changed

  • Update reqwest features to allow http2 negotiation
  • Update quick-xml (0.37) and zipsign (0.1)
  • Specify per_page=100 when fetching github releases

Removed

[0.41.0]

Added

Changed

  • Update to zip 2.x

Removed

Commits

Updates serde from 1.0.203 to 1.0.217

Release notes

Sourced from serde's releases.

v1.0.217

  • Support serializing externally tagged unit variant inside flattened field (#2786, thanks @​Mingun)

v1.0.216

  • Mark all generated impls with #[automatically_derived] to exclude from code coverage (#2866, #2868, thanks @​tdittr)

v1.0.215

  • Produce warning when multiple fields or variants have the same deserialization name (#2855, #2856, #2857)

v1.0.214

  • Implement IntoDeserializer for all Deserializers in serde::de::value module (#2568, thanks @​Mingun)

v1.0.213

  • Fix support for macro-generated with attributes inside a newtype struct (#2847)

v1.0.212

  • Fix hygiene of macro-generated local variable accesses in serde(with) wrappers (#2845)

v1.0.211

  • Improve error reporting about mismatched signature in with and default attributes (#2558, thanks @​Mingun)
  • Show variant aliases in error message when variant deserialization fails (#2566, thanks @​Mingun)
  • Improve binary size of untagged enum and internally tagged enum deserialization by about 12% (#2821)

v1.0.210

  • Support serializing and deserializing IpAddr and SocketAddr in no-std mode on Rust 1.77+ (#2816, thanks @​MathiasKoch)
  • Make serde::ser::StdError and serde::de::StdError equivalent to core::error::Error on Rust 1.81+ (#2818)

v1.0.209

  • Fix deserialization of empty structs and empty tuples inside of untagged enums (#2805, thanks @​Mingun)

v1.0.208

  • Support serializing and deserializing unit structs in a flatten field (#2802, thanks @​jonhoo)

v1.0.207

  • Improve interactions between flatten attribute and skip_serializing/skip_deserializing (#2795, thanks @​Mingun)

v1.0.206

  • Improve support for flatten attribute inside of enums (#2567, thanks @​Mingun)

v1.0.205

  • Use serialize_entry instead of serialize_key + serialize_value when serialize flattened newtype enum variants (#2785, thanks @​Mingun)
  • Avoid triggering a collection_is_never_read lint in the deserialization of enums containing flattened fields (#2791)

v1.0.204

  • Apply #[diagnostic::on_unimplemented] attribute on Rust 1.78+ to suggest adding serde derive or enabling a "serde" feature flag in dependencies (#2767, thanks @​weiznich)
Commits
  • 930401b Release 1.0.217
  • cb6eaea Fix roundtrip inconsistency:
  • b6f339c Resolve repr_packed_without_abi clippy lint in tests
  • 2a5caea Merge pull request #2872 from dtolnay/ehpersonality
  • b9f93f9 Add no-std CI on stable compiler
  • eb5cd47 Drop #[lang = "eh_personality"] from no-std test
  • 8478a3b Merge pull request #2871 from dtolnay/nostdstart
  • dbb9091 Replace #[start] with extern fn main
  • ad8dd41 Release 1.0.216
  • f91d2ed Merge pull request #2868 from dtolnay/automaticallyderived
  • Additional commits viewable in compare view

Updates tokio from 1.38.0 to 1.42.0

Release notes

Sourced from tokio's releases.

Tokio v1.42.0

1.42.0 (Dec 3rd, 2024)

Added

  • io: add AsyncFd::{try_io, try_io_mut} (#6967)

Fixed

  • io: avoid ptr->ref->ptr roundtrip in RegistrationSet (#6929)
  • runtime: do not defer yield_now inside block_in_place (#6999)

Changes

  • io: simplify io readiness logic (#6966)

Documented

  • net: fix docs for tokio::net::unix::{pid_t, gid_t, uid_t} (

Bumps the deps group with 17 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [ansi-to-tui](https://github.com/uttarayan21/ansi-to-tui) | `4.0.1` | `4.1.0` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.86` | `1.0.95` |
| [chrono](https://github.com/chronotope/chrono) | `0.4.38` | `0.4.39` |
| [clap](https://github.com/clap-rs/clap) | `4.5.8` | `4.5.13` |
| [globset](https://github.com/BurntSushi/ripgrep) | `0.4.14` | `0.4.15` |
| [ignore](https://github.com/BurntSushi/ripgrep) | `0.4.22` | `0.4.23` |
| [indexmap](https://github.com/indexmap-rs/indexmap) | `2.2.6` | `2.7.0` |
| [lade-sdk](https://github.com/zifeo/lade) | `0.11.2` | `0.11.5` |
| [openssl](https://github.com/sfackler/rust-openssl) | `0.10.66` | `0.10.68` |
| [notify](https://github.com/notify-rs/notify) | `6.1.1` | `7.0.0` |
| [regex](https://github.com/rust-lang/regex) | `1.10.5` | `1.11.1` |
| [self_update](https://github.com/jaemk/self_update) | `0.40.0` | `0.42.0` |
| [serde](https://github.com/serde-rs/serde) | `1.0.203` | `1.0.217` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.38.0` | `1.42.0` |
| [url](https://github.com/servo/rust-url) | `2.5.2` | `2.5.4` |
| [assert_cmd](https://github.com/assert-rs/assert_cmd) | `2.0.14` | `2.0.16` |
| [semver](https://github.com/dtolnay/semver) | `1.0.23` | `1.0.24` |



Updates `ansi-to-tui` from 4.0.1 to 4.1.0
- [Changelog](https://github.com/ratatui/ansi-to-tui/blob/master/CHANGELOG.md)
- [Commits](https://github.com/uttarayan21/ansi-to-tui/commits/v4.1.0)

Updates `anyhow` from 1.0.86 to 1.0.95
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](dtolnay/anyhow@1.0.86...1.0.95)

Updates `chrono` from 0.4.38 to 0.4.39
- [Release notes](https://github.com/chronotope/chrono/releases)
- [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md)
- [Commits](chronotope/chrono@v0.4.38...v0.4.39)

Updates `clap` from 4.5.8 to 4.5.13
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_complete-v4.5.8...clap_complete-v4.5.13)

Updates `globset` from 0.4.14 to 0.4.15
- [Release notes](https://github.com/BurntSushi/ripgrep/releases)
- [Changelog](https://github.com/BurntSushi/ripgrep/blob/master/CHANGELOG.md)
- [Commits](BurntSushi/ripgrep@globset-0.4.14...ignore-0.4.15)

Updates `ignore` from 0.4.22 to 0.4.23
- [Release notes](https://github.com/BurntSushi/ripgrep/releases)
- [Changelog](https://github.com/BurntSushi/ripgrep/blob/master/CHANGELOG.md)
- [Commits](https://github.com/BurntSushi/ripgrep/commits)

Updates `indexmap` from 2.2.6 to 2.7.0
- [Changelog](https://github.com/indexmap-rs/indexmap/blob/master/RELEASES.md)
- [Commits](indexmap-rs/indexmap@2.2.6...2.7.0)

Updates `lade-sdk` from 0.11.2 to 0.11.5
- [Release notes](https://github.com/zifeo/lade/releases)
- [Commits](zifeo/lade@v0.11.2...v0.11.5)

Updates `openssl` from 0.10.66 to 0.10.68
- [Release notes](https://github.com/sfackler/rust-openssl/releases)
- [Commits](sfackler/rust-openssl@openssl-v0.10.66...openssl-v0.10.68)

Updates `notify` from 6.1.1 to 7.0.0
- [Release notes](https://github.com/notify-rs/notify/releases)
- [Changelog](https://github.com/notify-rs/notify/blob/main/CHANGELOG.md)
- [Commits](notify-rs/notify@notify-6.1.1...notify-7.0.0)

Updates `regex` from 1.10.5 to 1.11.1
- [Release notes](https://github.com/rust-lang/regex/releases)
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md)
- [Commits](rust-lang/regex@1.10.5...1.11.1)

Updates `self_update` from 0.40.0 to 0.42.0
- [Release notes](https://github.com/jaemk/self_update/releases)
- [Changelog](https://github.com/jaemk/self_update/blob/master/CHANGELOG.md)
- [Commits](https://github.com/jaemk/self_update/commits)

Updates `serde` from 1.0.203 to 1.0.217
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.203...v1.0.217)

Updates `tokio` from 1.38.0 to 1.42.0
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-1.38.0...tokio-1.42.0)

Updates `url` from 2.5.2 to 2.5.4
- [Release notes](https://github.com/servo/rust-url/releases)
- [Commits](servo/rust-url@v2.5.2...v2.5.4)

Updates `assert_cmd` from 2.0.14 to 2.0.16
- [Changelog](https://github.com/assert-rs/assert_cmd/blob/master/CHANGELOG.md)
- [Commits](assert-rs/assert_cmd@v2.0.14...v2.0.16)

Updates `semver` from 1.0.23 to 1.0.24
- [Release notes](https://github.com/dtolnay/semver/releases)
- [Commits](dtolnay/semver@1.0.23...1.0.24)

---
updated-dependencies:
- dependency-name: ansi-to-tui
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: chrono
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: globset
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: ignore
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: indexmap
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: lade-sdk
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: openssl
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: notify
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: deps
- dependency-name: regex
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: self_update
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: url
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: assert_cmd
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: semver
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Jan 1, 2025
@zifeo zifeo closed this Jan 1, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 1, 2025

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot dependabot bot deleted the dependabot/cargo/deps-fc6a689c7a branch January 1, 2025 21:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant