chore(deps): update patch dependencies - autoclosed
This MR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
anyhow | dev-dependencies | patch |
1.0.58 -> 1.0.86
|
bytes | dependencies | patch |
1.6.0 -> 1.6.1
|
cc | build-dependencies | patch |
1.1.0 -> 1.1.6
|
clap | dev-dependencies | patch |
4.5.9 -> 4.5.11
|
clap | dependencies | patch |
4.5.9 -> 4.5.11
|
env_logger | dev-dependencies | patch |
0.11.3 -> 0.11.5
|
futures (source) | dependencies | patch |
0.3.21 -> 0.3.30
|
thiserror | dependencies | patch |
1.0.61 -> 1.0.63
|
tokio-util (source) | dependencies | patch |
0.7.3 -> 0.7.11
|
Release Notes
dtolnay/anyhow (anyhow)
v1.0.86
- Fix parse error in
ensure!
with non-literal after minus sign (#373)
v1.0.85
v1.0.84
- Disallow calling
ensure!
through aNot
impl for a type that is notbool
(#367)
v1.0.83
- Integrate compile-time checking of cfgs (#363)
v1.0.82
- Documentation improvements
v1.0.81
- Make backtrace support available when using -Dwarnings (#354)
v1.0.80
- Fix unused_imports warnings when compiled by rustc 1.78
v1.0.79
- Work around improperly cached build script result by sccache (#340)
v1.0.78
- Reduce spurious rebuilds under RustRover IDE when using a nightly toolchain (#337)
v1.0.77
- Make
anyhow::Error::backtrace
available on stable Rust compilers 1.65+ (#293, thanks @LukasKalbertodt)
v1.0.76
- Opt in to
unsafe_op_in_unsafe_fn
lint (#329)
v1.0.75
- Partially work around rust-analyzer bug (https://github.com/rust-lang/rust-analyzer/issues/9911)
v1.0.74
- Add bootstrap workaround to allow rustc to depend on anyhow (#320, thanks @RalfJung)
v1.0.73
- Update backtrace support to nightly's new Error::provide API (https://github.com/rust-lang/rust/pull/113464, #319)
v1.0.72
- Documentation improvements
v1.0.71
- Documentation improvements
v1.0.70
- Update syn dependency to 2.x
v1.0.69
- Documentation improvements
v1.0.68
- Opt out of
-Zrustdoc-scrape-examples
on docs.rs for now
v1.0.67
- Improve the backtrace captured when
context()
is used on anOption
(#280)
v1.0.66
- Reduce unhelpful backtrace frames in backtraces captured during a
context
call (#279)
v1.0.65
impl Provider for anyhow::Error
v1.0.64
v1.0.63
- Expose backtraces via the new "generic member access" API on the Error trait (https://github.com/rust-lang/rust/issues/99301, https://github.com/rust-lang/rust/issues/96024)
v1.0.62
- Fix extra rebuilding when interleaving command-line
cargo
invocations with IDE builds (#261)
v1.0.61
- Work around rust-analyzer builds poisoning all subsequent command-line cargo builds (#252)
v1.0.60
- Propagate
--target
to rustc invocation when deciding about backtrace support (#249, thanks @RalfJung)
v1.0.59
- Update crates.io metadata to include
no-std
category
tokio-rs/bytes (bytes)
v1.6.1
This release fixes a bug where Bytes::is_unique
returns incorrect values when
the Bytes
originates from a shared BytesMut
. (#718)
rust-lang/cc-rs (cc)
v1.1.6
Other
- Clippy fixes (#1163)
v1.1.5
Other
- Fix cyclic compilation: Use vendored once_cell (#1154)
v1.1.4
Other
v1.1.3
Other
- Reduce msrv to 1.63 (#1158)
- Revert "Use raw-dylib for windows-sys (#1137)" (#1157)
- Fix typos (#1152)
- Fix
doc_lazy_continuation
lints (#1153)
v1.1.2
Other
- Add empty
jobserver
feature. (#1150)
v1.1.1
Other
rust-lang/futures-rs (futures)
v0.3.30
- 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
- Add
TryStreamExt::try_ready_chunks
(#2757) - Add
TryStreamExt::{try_all,try_any}
(#2783) - Add
UnboundedSender::{len,is_empty}
(#2750) - Fix
Sync
impl ofFuturesUnordered
(#2788) - Fix infinite loop caused by invalid UTF-8 bytes (#2785)
- Fix build error with -Z minimal-versions (#2761)
v0.3.28
- Update to syn 2. This raises MSRV of utility crates to 1.56. (#2730, #2733)
- Fix bug in
FlattenUnordered
(#2726, #2728)
v0.3.27
- Add
TryFlattenUnordered
(#2577, #2590, #2606, #2607) - Add
AbortHandle::is_aborted
(#2710) - Add
AbortRegistration::handle
(#2712) - Make
BiLock
strict-provenance compatible (#2716)
v0.3.26
- Add
Either::as_pin_mut
andEither::as_pin_ref
(#2691) - Add
Shared::ptr_eq
andShared::ptr_hash
(#2691) - Implement
FusedStream
forBuffered
(#2676) - Implement
FusedStream
for all streams inReadyChunks
(#2693) - Fix bug in
FuturesOrdered::push_front
(#2664) - Remove
Fut::Output: Clone
bounds from someShared
methods (#2662) - Remove
T: Debug
bounds fromDebug
implementations ofmpsc
andoneshot
types (#2666, #2667)
v0.3.25
v0.3.24
- Fix incorrect termination of
select_with_strategy
streams (#2635)
v0.3.23
- Work around MSRV increase due to a cargo bug.
v0.3.22
- Fix
Sync
impl ofBiLockGuard
(#2570) - Fix partial iteration in
FuturesUnordered
(#2574) - Fix false detection of inner panics in
Shared
(#2576) - Add
Mutex::lock_owned
andMutex::try_lock_owned
(#2571) - Add
io::copy_buf_abortable
(#2507) - Remove
Unpin
bound fromTryStreamExt::into_async_read
(#2599) - Make
run_until_stalled
handle self-waking futures (#2593) - Use
FuturesOrdered
intry_join_all
(#2556) - Fix orderings in
LocalPool
waker (#2608) - Fix
stream::Chunk
adapters size hints (#2611) - Add
push_front
andpush_back
toFuturesOrdered
(#2591) - Deprecate
FuturesOrdered::push
in favor ofFuturesOrdered::push_back
(#2591) - Performance improvements (#2583, #2626)
- Documentation improvements (#2579, #2604, #2613)
dtolnay/thiserror (thiserror)
v1.0.63
- Documentation improvements
v1.0.62
- Support referring to nested tuple struct fields inside
#[error("…", …)]
attribute (#309)
Configuration
-
If you want to rebase/retry this MR, check this box
This MR has been generated by Renovate Bot.
Edited by Renovate Bot