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

build(deps): bump the rust-minor group across 1 directory with 18 updates #237

Merged
merged 1 commit into from
Aug 20, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 20, 2024

Bumps the rust-minor group with 15 updates in the / directory:

Package From To
tokio 1.39.2 1.39.3
arrayvec 0.7.4 0.7.6
bytemuck 1.16.3 1.17.0
bytemuck_derive 1.7.0 1.7.1
cc 1.1.10 1.1.13
clap 4.5.15 4.5.16
h2 0.4.5 0.4.6
indexmap 2.3.0 2.4.0
libc 0.2.155 0.2.158
reqwest 0.12.5 0.12.7
serde 1.0.207 1.0.208
serde_json 1.0.124 1.0.125
tower-layer 0.3.2 0.3.3
tower-service 0.3.2 0.3.3
unicode-xid 0.2.4 0.2.5

Updates tokio from 1.39.2 to 1.39.3

Release notes

Sourced from tokio's releases.

Tokio v1.39.3

1.39.3 (August 17th, 2024)

This release fixes a regression where the unix socket api stopped accepting the abstract socket namespace. (#6772)

#6772: tokio-rs/tokio#6772

Commits

Updates arrayvec from 0.7.4 to 0.7.6

Release notes

Sourced from arrayvec's releases.

0.7.6

  • Fix no-std build #274

0.7.5

Changelog

Sourced from arrayvec's changelog.

0.7.6

  • Fix no-std build #274

0.7.5

Commits

Updates bytemuck from 1.16.3 to 1.17.0

Changelog

Sourced from bytemuck's changelog.

1.17.0

  • Makes the must_cast versions of the by-value and by-ref casts be const. The mut ref cast is unaffected for now (mut references aren't yet stable in const fn). This increases the MSRV of using that particular feature from 1.57 to 1.64.
Commits

Updates bytemuck_derive from 1.7.0 to 1.7.1

Changelog

Sourced from bytemuck_derive's changelog.

1.7.1

  • Soundness Fix: The wrap/peel methods for owned value conversion, added to TransparentWrapper in 1.6, can cause a double-drop if used with types that impl Drop. The fix was simply to add a ManuallyDrop layer around the value before doing the transmute_copy that is used to wrap/peel. While this fix could technically be backported to the 1.6 series, since 1.7 is semver compatible anyway the 1.6 series has simply been yanked.

1.7

  • In response to [Unsafe Code Guidelines Issue #286](rust-lang/unsafe-code-guidelines#286), this version of Bytemuck has a Soundness-Required Breaking Change. This is "allowed" under Rust's backwards-compatibility guidelines, but it's still annoying of course so we're trying to keep the damage minimal.
    • The Reason: It turns out that pointer values should not have been Pod. More specifically, ptr as usize is not the same operation as calling transmute::<_, usize>(ptr).
    • LLVM has yet to fully sort out their story, but until they do, transmuting pointers can cause miscompilations. They may fix things up in the future, but we're not gonna just wait and have broken code in the mean time.
    • The Fix: The breaking change is that the Pod impls for *const T, *mut T, and Option<NonNull<T> are now gated behind the unsound_ptr_pod_impl feature, which is off by default.
    • You are strongly discouraged from using this feature, but if a dependency of yours doesn't work when you upgrade to 1.7 because it relied on pointer casting, then you might wish to temporarily enable the feature just to get that dependency to build. Enabled features are global across all users of a given semver compatible version, so if you enable the feature in your own crate, your dependency will also end up getting the feature too, and then it'll be able to compile.
    • Please move away from using this feature as soon as you can. Consider it to already be deprecated.
    • PR 65

1.6.3

  • Small goof with an errant ;, so PR 69 actually got things working on SPIR-V.

1.6.2

cargo upload goof! ignore this one.

1.6.1

  • DJMcNab did a fix so that the crate can build for SPIR-V PR 67

... (truncated)

Commits
  • faff804 chore: Release bytemuck_derive version 1.7.1
  • 7be8c67 derive changelog
  • bb62be5 Remove "dangling" terminology for zero-sized pointees. (#262)
  • 5eecd33 Make must_cast by-value and by-shared-ref functions const (#261)
  • 243302d Add bytemuck attribute to NoUninit derive (#259)
  • e1baf85 Fix box_bytes_zst test (#260)
  • 20f4a09 chore: Release bytemuck version 1.16.3
  • 9f7161c describe pr 256
  • 291a924 Allow casting between slices of ZSTs and slices of non-ZSTs in all cases. (#256)
  • 758774d chore: Release bytemuck version 1.16.2
  • Additional commits viewable in compare view

Updates cc from 1.1.10 to 1.1.13

Release notes

Sourced from cc's releases.

cc-v1.1.13

Other

  • Fix detect family: should detect emscripten as clang, closes #1185 (#1186)

cc-v1.1.12

Other

cc-v1.1.11

Other

  • Add support for parsing shell encoded *FLAGS (#1181)
  • Replace vector of tuples with BTreeMap which already is sorted and free of duplicates (#1177)
Changelog

Sourced from cc's changelog.

1.1.13 - 2024-08-16

Other

  • Fix detect family: should detect emscripten as clang, closes #1185 (#1186)

1.1.12 - 2024-08-15

Other

1.1.11 - 2024-08-14

Other

  • Add support for parsing shell encoded *FLAGS (#1181)
  • Replace vector of tuples with BTreeMap which already is sorted and free of duplicates (#1177)
Commits

Updates clap from 4.5.15 to 4.5.16

Release notes

Sourced from clap's releases.

v4.5.16

[4.5.16] - 2024-08-15

Fixes

  • (derive) Improve error messages when derive feature is missing
Changelog

Sourced from clap's changelog.

[4.5.16] - 2024-08-15

Fixes

  • (derive) Improve error messages when derive feature is missing
Commits

Updates h2 from 0.4.5 to 0.4.6

Release notes

Sourced from h2's releases.

v0.4.6

What's Changed

  • Add current_max_send_streams() and current_max_recv_streams() to client::SendRequest.
  • Fix sending a PROTOCOL_ERROR instead of REFUSED_STREAM when receiving oversized headers.
  • Fix notifying a PushPromise task properly.
  • Fix notifying a stream task when reset.

New Contributors

Thanks

Full Changelog: hyperium/h2@v0.4.5...v0.4.6

Changelog

Sourced from h2's changelog.

0.4.6 (August 19, 2024)

  • Add current_max_send_streams() and current_max_recv_streams() to client::SendRequest.
  • Fix sending a PROTOCOL_ERROR instead of REFUSED_STREAM when receiving oversized headers.
  • Fix notifying a PushPromise task properly.
  • Fix notifying a stream task when reset.
Commits
  • 90359ba v0.4.6
  • a462e95 chore: allow matching infallible (#796)
  • 36cf4f2 h2-tests: Add testing tools to verify wake calls (#794)
  • 5e5c03c streams: PushPromise tasks are notified properly (#793)
  • e1693a7 fix: send PROTOCOL_ERROR instead of REFUSED_STREAM for oversized headers (#792)
  • 7dbb5c5 streams: notify recv task upon reset (#791)
  • cf95990 chore: remove unnecessary type converting (#790)
  • 2967fbb chore: replace legacy numeric constant with corresponding one (#789)
  • e407f2e docs: add indent to newline of list (#788)
  • 2fb0f49 style: flatten unnecessary nested if expression (#787)
  • Additional commits viewable in compare view

Updates indexmap from 2.3.0 to 2.4.0

Changelog

Sourced from indexmap's changelog.

2.4.0

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

Updates libc from 0.2.155 to 0.2.158

Release notes

Sourced from libc's releases.

0.2.158

Other

0.2.157

Added

Fixed

Changed

0.2.156

Added

Fixed

Changed

Removed

Other

  • Update or remove CI tests that have been failing
Changelog

Sourced from libc's changelog.

0.2.158 - 2024-08-19

Other

0.2.157 - 2024-08-17

Added

Fixed

Changed

0.2.156 - 2024-08-15

Added

Fixed

Changed

Removed

... (truncated)

Commits
  • c809c58 Merge pull request #3857 from rust-lang/release-plz-2024-08-19T05-21-04Z
  • 0d28de5 Update CHANGELOG.md
  • 284bd9e chore: release
  • 2682681 Merge pull request #3856 from tgross35/backport-wasi-fix
  • 71440ab [wasi] Add use core::iter::Iterator;
  • 6637dbe Merge pull request #3830 from rust-lang/release-plz-2024-08-15T20-50-10Z
  • 51d81e3 Update CHANGELOG.md
  • 217b2ab chore: release
  • 6d2b8a0 Merge pull request #3852 from tgross35/backport-onion
  • 64ee9df Merge pull request #3851 from tgross35/backport-romaine
  • Additional commits viewable in compare view

Updates reqwest from 0.12.5 to 0.12.7

Release notes

Sourced from reqwest's releases.

v0.12.7

What's Changed

  • Revert adding impl Service<http::Request<_>> for Client.

Full Changelog: seanmonstar/reqwest@v0.12.6...v0.12.7

v0.12.6

What's Changed

  • Add support for danger_accept_invalid_hostnames for rustls.
  • Add impl Service<http::Request<Body>> for Client and &'_ Client.
  • Add support for !Sync bodies in Body::wrap_stream().
  • Enable happy eyeballs when hickory-dns is used.
  • Fix Proxy so that HTTP(S)_PROXY values take precendence over ALL_PROXY.
  • Fix blocking::RequestBuilder::header() from unsetting sensitive on passed header values.

New Contributors

Thanks again

Full Changelog: seanmonstar/reqwest@v0.12.5...v0.12.6

Changelog

Sourced from reqwest's changelog.

v0.12.7

  • Revert adding impl Service<http::Request<_>> for Client.

v0.12.6

  • Add support for danger_accept_invalid_hostnames for rustls.
  • Add impl Service<http::Request<Body>> for Client and &'_ Client.
  • Add support for !Sync bodies in Body::wrap_stream().
  • Enable happy eyeballs when hickory-dns is used.
  • Fix Proxy so that HTTP(S)_PROXY values take precendence over ALL_PROXY.
  • Fix blocking::RequestBuilder::header() from unsetting sensitive on passed header values.
Commits
  • 88bd9be v0.12.7
  • 68127f0 Revert "feat: Add impl Service\<http::Request<Body>> for Client and `&'_ C...
  • b2a28f5 v0.12.6
  • 522216e feat: Add impl Service\<http::Request<Body>> for Client and &'_ Client (...
  • 646b1f8 chore: update macOS system-configuration dep (#2368)
  • 85dd6da dns: improve error message for hickory-dns and warn in docs (#2389)
  • bfd31be docs: Improve RequestBuilder::multipart's documentation (#2388)
  • 8c7f338 chore: bump dev-dependency libflate (#2382)
  • dddf877 chore: bump h3 dependency
  • a53c944 chore: fix some comments
  • Additional commits viewable in compare view

Updates serde from 1.0.207 to 1.0.208

Release notes

Sourced from serde's releases.

v1.0.208

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

Updates serde_derive from 1.0.207 to 1.0.208

Release notes

Sourced from serde_derive's releases.

v1.0.208

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

Updates serde_json from 1.0.124 to 1.0.125

Release notes

Sourced from serde_json's releases.

1.0.125

  • Speed up \uXXXX parsing and improve handling of unpaired surrogates when deserializing to bytes (#1172, #1175, thanks @​purplesyringa)
Commits
  • 6130f9b Release 1.0.125
  • cc7a160 Touch up PR 1175
  • 0f942e5 Merge pull request 1175 from iex-rs/faster-backslash-u
  • d8921cd Merge pull request #1172 from iex-rs/faster-hex
  • b4bc643 Merge pull request #1176 from dtolnay/miriname
  • 94a2aad Improve job names for miri jobs
  • 8073fc1 Merge pull request #1174 from iex-rs/miri-on-ci
  • 96ae604 Correct WTF-8 parsing
  • 236cc82 Simplify unicode escape handling
  • 2f28d10 Use the same UTF-8/WTF-8 impl for surrogates
  • Additional commits viewable in compare view

Updates system-configuration from 0.5.1 to 0.6.0

Changelog

Sourced from system-configuration's changelog.

[0.6.0] - 2024-01-31

Changed

  • Bump minimum supported Rust version (MSRV) to 1.64.0.
  • Breaking: Mark SCNetworkReachability::schedule_with_runloop and unschedule_from_runloop as unsafe. They accept a raw pointer that it dereferences. Figuring out a safe API around this is left as an exercise for the future.
  • Breaking: ReachabilityFlags no longer implements Ord or PartialOrd. It also replaces the from_bits_unchecked constructor with other (safe) from_bits_* constructors.

Fixed

  • Fix memory leak in SCNetworkReachability::set_callback.
  • Fix builds on iOS by removing references to deprecated interface type kSCNetworkInterfaceTypeIrDA. Also remove constant for bridge network interfaces (kSCNetworkInterfaceTypeBridge).
Commits
  • fd43df6 Merge branch 'prepare-0.6.0-release' into main
  • 15b1922 Bump crate versions and changelog
  • faf5cb6 Mention removed bindings in changelog
  • f4096d1 Merge branch 'derive-reachability-flags-traits'
  • 83ce40f Add changelog about changes to ReachabilityFlags
  • 08a62bd Derive Debug, Copy, Eq, Hash etc on ReachabilityFlag
  • fe56d19 Merge branch 'mark-runloop-scheduling-as-unsafe'
  • 5a08503 Remove superfluous unsafe {}
  • 4fcc05c Wrap unsafe calls in unsafe {}
  • 8370ad2 Mark schedule_with_runloop/unschedule_from_runloop as unsafe
  • Additional commits viewable in compare view

Updates system-configuration-sys from 0.5.0 to 0.6.0

Changelog

Sourced from system-configuration-sys's changelog.

[0.6.0] - 2024-01-31

Changed

  • Bump minimum supported Rust version (MSRV) to 1.64.0.
  • Breaking: Mark SCNetworkReachability::schedule_with_runloop and unschedule_from_runloop as unsafe. They accept a raw pointer that it dereferences. Figuring out a safe API around this is left as an exercise for the future.
  • Breaking: ReachabilityFlags no longer implements Ord or PartialOrd. It also replaces the from_bits_unchecked constructor with other (safe) from_bits_* constructors.

Fixed

  • Fix memory leak in SCNetworkReachability::set_callback.
  • Fix builds on iOS by removing references to deprecated interface type kSCNetworkInterfaceTypeIrDA. Also remove constant for bridge network interfaces (kSCNetworkInterfaceTypeBridge).

[0.5.1] - 2023-05-15

Added

  • Add bindings for SCNetworkSet and SCNetworkService
Commits
  • fd43df6 Merge branch 'prepare-0.6.0-release' into main
  • 15b1922 Bump crate versions and changelog
  • faf5cb6 Mention removed bindings in changelog
  • f4096d1 Merge branch 'derive-reachability-flags-traits'
  • 83ce40f Add changelog about changes to ReachabilityFlags
  • 08a62bd Derive Debug, Copy, Eq, Hash etc on ReachabilityFlag
  • fe56d19 Merge branch 'mark-runloop-scheduling-as-unsafe'
  • 5a08503 Remove superfluous unsafe {}
  • 4fcc05c Wrap unsafe calls in unsafe {}
  • 8370ad2 Mark schedule_with_runloop/unschedule_from_runloop as unsafe
  • Additional commits viewable in compare view

Updates tower-layer from 0.3.2 to 0.3.3

Release notes

Sourced from tower-layer's releases.

tower-layer 0.3.3

Added

  • builder,util: add convenience methods for boxing services (#616)
  • all: new functions const when possible (#760)

#616: tower-rs/tower#616 #760: tower-rs/tower#760

Commits
  • fec9e55 tower-layer: drop versions from dev dependencies (#782)
  • 646804d chore: prepare to release tower-0.5.0, tower-layer-0.3.3, tower-service-0.3.3...
  • 7202cfe chore: fix a few typos (#780)
  • 85080a5 use workspace dependencies for tower (#778)
  • 88a7d3e fix warnings found when running check/doc commands (#779)
  • a6e98a7 chore: update GitHub Actions CI (#740)
  • 74e925d chore: fix spelling errors (#775)
  • 89ac74f feat: Make new functions const when possible (#760)
  • 032d17f ensure that re-exported symbols show feature label in root (#754)
  • 05a0a25 Upgrade to indexmap v2 (MSRV 1.63) (#741)
  • Additional commits viewable in compare view

Updates tower-service from 0.3.2 to 0.3.3

Commits
  • 646804d chore: prepare to release tower-0.5.0, tower-layer-0.3.3, tower-service-0.3.3...
  • 7202cfe chore: fix a few typos (#780)
  • 85080a5 use workspace dependencies for tower (#778)
  • 88a7d3e fix warnings found when running check/doc commands (#779)
  • a6e98a7 chore: update GitHub Actions CI (#740)
  • 74e925d chore: fix spelling errors (#775)
  • 89ac74f feat: Make new functions const when possible (#760)
  • 032d17f ensure that re-exported symbols show feature label in root (#754)
  • 05a0a25 Upgrade to indexmap v2 (MSRV 1.63) (#741)
  • 7d723eb remove generic parameters from Reconnect::new (#755)
  • Additional commits viewable in compare view

Updates unicode-xid from 0.2.4 to 0.2.5

Commits

…ates

Bumps the rust-minor group with 15 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [tokio](https://github.com/tokio-rs/tokio) | `1.39.2` | `1.39.3` |
| [arrayvec](https://github.com/bluss/arrayvec) | `0.7.4` | `0.7.6` |
| [bytemuck](https://github.com/Lokathor/bytemuck) | `1.16.3` | `1.17.0` |
| [bytemuck_derive](https://github.com/Lokathor/bytemuck) | `1.7.0` | `1.7.1` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.1.10` | `1.1.13` |
| [clap](https://github.com/clap-rs/clap) | `4.5.15` | `4.5.16` |
| [h2](https://github.com/hyperium/h2) | `0.4.5` | `0.4.6` |
| [indexmap](https://github.com/indexmap-rs/indexmap) | `2.3.0` | `2.4.0` |
| [libc](https://github.com/rust-lang/libc) | `0.2.155` | `0.2.158` |
| [reqwest](https://github.com/seanmonstar/reqwest) | `0.12.5` | `0.12.7` |
| [serde](https://github.com/serde-rs/serde) | `1.0.207` | `1.0.208` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.124` | `1.0.125` |
| [tower-layer](https://github.com/tower-rs/tower) | `0.3.2` | `0.3.3` |
| [tower-service](https://github.com/tower-rs/tower) | `0.3.2` | `0.3.3` |
| [unicode-xid](https://github.com/unicode-rs/unicode-xid) | `0.2.4` | `0.2.5` |



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

Updates `arrayvec` from 0.7.4 to 0.7.6
- [Release notes](https://github.com/bluss/arrayvec/releases)
- [Changelog](https://github.com/bluss/arrayvec/blob/master/CHANGELOG.md)
- [Commits](bluss/arrayvec@0.7.4...0.7.6)

Updates `bytemuck` from 1.16.3 to 1.17.0
- [Changelog](https://github.com/Lokathor/bytemuck/blob/main/changelog.md)
- [Commits](Lokathor/bytemuck@v1.16.3...v1.17.0)

Updates `bytemuck_derive` from 1.7.0 to 1.7.1
- [Changelog](https://github.com/Lokathor/bytemuck/blob/main/changelog.md)
- [Commits](Lokathor/bytemuck@bytemuck_derive-v1.7.0...bytemuck_derive-v1.7.1)

Updates `cc` from 1.1.10 to 1.1.13
- [Release notes](https://github.com/rust-lang/cc-rs/releases)
- [Changelog](https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/cc-rs@cc-v1.1.10...cc-v1.1.13)

Updates `clap` from 4.5.15 to 4.5.16
- [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.15...clap_complete-v4.5.16)

Updates `h2` from 0.4.5 to 0.4.6
- [Release notes](https://github.com/hyperium/h2/releases)
- [Changelog](https://github.com/hyperium/h2/blob/master/CHANGELOG.md)
- [Commits](hyperium/h2@v0.4.5...v0.4.6)

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

Updates `libc` from 0.2.155 to 0.2.158
- [Release notes](https://github.com/rust-lang/libc/releases)
- [Changelog](https://github.com/rust-lang/libc/blob/0.2.158/CHANGELOG.md)
- [Commits](rust-lang/libc@0.2.155...0.2.158)

Updates `reqwest` from 0.12.5 to 0.12.7
- [Release notes](https://github.com/seanmonstar/reqwest/releases)
- [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md)
- [Commits](seanmonstar/reqwest@v0.12.5...v0.12.7)

Updates `serde` from 1.0.207 to 1.0.208
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.207...v1.0.208)

Updates `serde_derive` from 1.0.207 to 1.0.208
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.207...v1.0.208)

Updates `serde_json` from 1.0.124 to 1.0.125
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.124...1.0.125)

Updates `system-configuration` from 0.5.1 to 0.6.0
- [Changelog](https://github.com/mullvad/system-configuration-rs/blob/main/CHANGELOG.md)
- [Commits](mullvad/system-configuration-rs@v0.5.1...v0.6.0)

Updates `system-configuration-sys` from 0.5.0 to 0.6.0
- [Changelog](https://github.com/mullvad/system-configuration-rs/blob/main/CHANGELOG.md)
- [Commits](mullvad/system-configuration-rs@v0.5.0...v0.6.0)

Updates `tower-layer` from 0.3.2 to 0.3.3
- [Release notes](https://github.com/tower-rs/tower/releases)
- [Commits](tower-rs/tower@tower-layer-0.3.2...tower-layer-0.3.3)

Updates `tower-service` from 0.3.2 to 0.3.3
- [Release notes](https://github.com/tower-rs/tower/releases)
- [Commits](tower-rs/tower@tower-service-0.3.2...tower-service-0.3.3)

Updates `unicode-xid` from 0.2.4 to 0.2.5
- [Commits](unicode-rs/unicode-xid@v0.2.4...v0.2.5)

---
updated-dependencies:
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: arrayvec
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: bytemuck
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-minor
- dependency-name: bytemuck_derive
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: cc
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: clap
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: h2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: indexmap
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-minor
- dependency-name: libc
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: reqwest
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: serde
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: serde_derive
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: serde_json
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: system-configuration
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-minor
- dependency-name: system-configuration-sys
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-minor
- dependency-name: tower-layer
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: tower-service
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: unicode-xid
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
...

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 Aug 20, 2024
@torokati44 torokati44 enabled auto-merge (rebase) August 20, 2024 00:26
@torokati44 torokati44 merged commit 2a6deec into main Aug 20, 2024
9 checks passed
@dependabot dependabot bot deleted the dependabot/cargo/rust-minor-f5cb30c2bb branch August 20, 2024 00:33
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