Skip to content

fix(deps): update patch dependencies

Renovate Bot requested to merge renovate/patch-dependencies into main

This MR contains the following updates:

Package Type Update Change
anyhow dependencies patch 1.0.82 -> 1.0.86
anyhow dev-dependencies patch 1.0.58 -> 1.0.86
backtrace dependencies patch 0.3.71 -> 0.3.73
cc build-dependencies patch 1.0.96 -> 1.0.99
clap dev-dependencies patch 4.5.4 -> 4.5.7
clap dependencies patch 4.5.4 -> 4.5.7
futures (source) dependencies patch 0.3.21 -> 0.3.30
libc dependencies patch 0.2.154 -> 0.2.155
serde (source) dependencies patch 1.0.200 -> 1.0.203
serde_json dependencies patch 1.0.116 -> 1.0.117
thiserror dependencies patch 1.0.59 -> 1.0.61
tokio-util (source) dependencies patch 0.7.3 -> 0.7.11

Release Notes

dtolnay/anyhow (anyhow)

v1.0.86

Compare Source

  • Fix parse error in ensure! with non-literal after minus sign (#​373)

v1.0.85

Compare Source

  • Improve ensure! macro's rules to unblock some rustc pretty-printer improvements (#​368, #​371)

v1.0.84

Compare Source

  • Disallow calling ensure! through a Not impl for a type that is not bool (#​367)

v1.0.83

Compare Source

  • Integrate compile-time checking of cfgs (#​363)
rust-lang/backtrace-rs (backtrace)

v0.3.73

Compare Source

This basically just is bugfixes so that backtrace works on Windows 7 again.

What's Changed
New Contributors

Full Changelog: https://github.com/rust-lang/backtrace-rs/compare/0.3.72...0.3.73

v0.3.72

Compare Source

This release removes a lot of dead code. Some feature flags that haven't done anything in a long time are gone. If you depend on those features, Cargo's resolver will not update you to 0.3.72.

If your code runs on Windows, or you want it to run on visionOS, however, you should probably update to this version. It contains a number of fixes for both OS. It also uses the latest version of a number of dependencies.

What's Changed
New Contributors

Full Changelog: https://github.com/rust-lang/backtrace-rs/compare/0.3.71...0.3.72

rust-lang/cc-rs (cc)

v1.0.99

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/rust-lang/cc-rs/compare/1.0.98...1.0.99

v1.0.98

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/rust-lang/cc-rs/compare/1.0.97...1.0.98

v1.0.97

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/rust-lang/cc-rs/compare/1.0.96...1.0.97

clap-rs/clap (clap)

v4.5.7

Compare Source

Fixes
  • Clean up error message when too few arguments for num_args

v4.5.6

Compare Source

v4.5.5

Compare Source

Fixes
  • Allow exclusive to override required_unless_present, required_unless_present_any, required_unless_present_all
rust-lang/futures-rs (futures)

v0.3.30

Compare Source

  • Add {BiLock,SplitStream,SplitSink,ReadHalf,WriteHalf}::is_pair_of (#​2797)
  • Fix panic in FuturesUnordered::clear (#​2809)
  • Fix panic in AsyncBufReadExt::fill_buf (#​2801, #​2812)
  • Improve support for targets without atomic CAS (#​2811)
  • Remove build scripts (#​2811)

v0.3.29

Compare Source

  • Add TryStreamExt::try_ready_chunks (#​2757)
  • Add TryStreamExt::{try_all,try_any} (#​2783)
  • Add UnboundedSender::{len,is_empty} (#​2750)
  • Fix Sync impl of FuturesUnordered (#​2788)
  • Fix infinite loop caused by invalid UTF-8 bytes (#​2785)
  • Fix build error with -Z minimal-versions (#​2761)

v0.3.28

Compare Source

v0.3.27

Compare Source

v0.3.26

Compare Source

  • Add Either::as_pin_mut and Either::as_pin_ref (#​2691)
  • Add Shared::ptr_eq and Shared::ptr_hash (#​2691)
  • Implement FusedStream for Buffered (#​2676)
  • Implement FusedStream for all streams in ReadyChunks (#​2693)
  • Fix bug in FuturesOrdered::push_front (#​2664)
  • Remove Fut::Output: Clone bounds from some Shared methods (#​2662)
  • Remove T: Debug bounds from Debug implementations of mpsc and oneshot types (#​2666, #​2667)

v0.3.25

Compare Source

  • Fix soundness issue in join! and try_join! macros (#​2649)
  • Implement Clone for sink::Drain (#​2650)

v0.3.24

Compare Source

  • Fix incorrect termination of select_with_strategy streams (#​2635)

v0.3.23

Compare Source

  • Work around MSRV increase due to a cargo bug.

v0.3.22

Compare Source

  • Fix Sync impl of BiLockGuard (#​2570)
  • Fix partial iteration in FuturesUnordered (#​2574)
  • Fix false detection of inner panics in Shared (#​2576)
  • Add Mutex::lock_owned and Mutex::try_lock_owned (#​2571)
  • Add io::copy_buf_abortable (#​2507)
  • Remove Unpin bound from TryStreamExt::into_async_read (#​2599)
  • Make run_until_stalled handle self-waking futures (#​2593)
  • Use FuturesOrdered in try_join_all (#​2556)
  • Fix orderings in LocalPool waker (#​2608)
  • Fix stream::Chunk adapters size hints (#​2611)
  • Add push_front and push_back to FuturesOrdered (#​2591)
  • Deprecate FuturesOrdered::push in favor of FuturesOrdered::push_back (#​2591)
  • Performance improvements (#​2583, #​2626)
  • Documentation improvements (#​2579, #​2604, #​2613)
rust-lang/libc (libc)

v0.2.155

Compare Source

What's Changed
New Contributors

Full Changelog: https://github.com/rust-lang/libc/compare/0.2.154...0.2.155

serde-rs/serde (serde)

v1.0.203

Compare Source

v1.0.202

Compare Source

  • Provide public access to RenameAllRules in serde_derive_internals (#​2743)

v1.0.201

Compare Source

  • Resolve unexpected_cfgs warning (#​2737)
serde-rs/json (serde_json)

v1.0.117

Compare Source

  • Resolve unexpected_cfgs warning (#​1130)
dtolnay/thiserror (thiserror)

v1.0.61

Compare Source

  • Use core::fmt and core::panic to facilitate error_in_core support (#​299, thanks @​jordens)

v1.0.60

Compare Source

  • Resolve unexpected_cfgs warning (#​298)
tokio-rs/tokio (tokio-util)

v0.7.11

Compare Source

v0.7.10

Compare Source

v0.7.9

Compare Source

v0.7.8

Compare Source

v0.7.7

Compare Source

v0.7.6

Compare Source

v0.7.5

Compare Source

v0.7.4

Compare Source


Configuration

📅 Schedule: Branch creation - "on the 2nd and 4th day instance on sunday after 9pm" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever MR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This MR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this MR, check this box

This MR has been generated by Renovate Bot.

Edited by Renovate Bot

Merge request reports