Update All dependencies (patch only) #570
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
1.0.58
->1.0.68
0.5.1
->0.5.2
0.3.21
->0.3.25
1.0.11
->1.0.12
1.0.12
->1.0.16
1.0.138
->1.0.152
1.0.82
->1.0.91
0.7.1
->0.7.4
1.24.1
->1.24.2
0.1.35
->0.1.37
Release Notes
dtolnay/anyhow
v1.0.68
Compare Source
-Zrustdoc-scrape-examples
on docs.rs for nowv1.0.67
Compare Source
context()
is used on anOption
(#280)v1.0.66
Compare Source
context
call (#279)v1.0.65
Compare Source
impl Provider for anyhow::Error
v1.0.64
Compare Source
#[source] anyhow::Error
with thiserror crate (#231)v1.0.63
Compare Source
v1.0.62
Compare Source
cargo
invocations with IDE builds (#261)v1.0.61
Compare Source
v1.0.60
Compare Source
--target
to rustc invocation when deciding about backtrace support (#249, thanks @RalfJung)v1.0.59
Compare Source
no-std
categorylukaslueg/built
v0.5.2
Compare Source
Changed
time
cargo-lock
to 8.0git2
to 0.15Added
rust-lang/futures-rs
v0.3.25
Compare Source
join!
andtry_join!
macros (#2649)Clone
forsink::Drain
(#2650)v0.3.24
Compare Source
select_with_strategy
streams (#2635)v0.3.23
Compare Source
v0.3.22
Compare Source
Sync
impl ofBiLockGuard
(#2570)FuturesUnordered
(#2574)Shared
(#2576)Mutex::lock_owned
andMutex::try_lock_owned
(#2571)io::copy_buf_abortable
(#2507)Unpin
bound fromTryStreamExt::into_async_read
(#2599)run_until_stalled
handle self-waking futures (#2593)FuturesOrdered
intry_join_all
(#2556)LocalPool
waker (#2608)stream::Chunk
adapters size hints (#2611)push_front
andpush_back
toFuturesOrdered
(#2591)FuturesOrdered::push
in favor ofFuturesOrdered::push_back
(#2591)taiki-e/pin-project
v1.0.12
Compare Source
unused_tuple_struct_fields
lint in generated code.dtolnay/semver
v1.0.16
Compare Source
-Zrustdoc-scrape-examples
on docs.rs for nowv1.0.15
Compare Source
v1.0.14
Compare Source
v1.0.13
Compare Source
serde-rs/serde
v1.0.152
Compare Source
v1.0.151
Compare Source
serde::
{ser
,de
}::StdError
to re-exportcore::error::Error
when serde is built withfeature="std"
off andfeature="unstable"
on (#2344)v1.0.150
Compare Source
Serialize
impl ofHashMap
andBTreeMap
(#2334)Serialize
andDeserialize
impls ofstd::sync::atomic
types on more platforms (#2337, thanks @badboy)v1.0.149
Compare Source
Serialize
impl ofBinaryHeap
,BTreeSet
, andHashSet
(#2333, thanks @jonasbb)v1.0.148
Compare Source
remote
derive for generic types that have private fields (#2327)v1.0.147
Compare Source
serde::de::value::EnumAccessDeserializer
which transforms anEnumAccess
into aDeserializer
(#2305)v1.0.146
Compare Source
v1.0.145
Compare Source
Sized
(#2282, thanks @ChayimFriedman2)v1.0.144
Compare Source
v1.0.143
Compare Source
v1.0.142
Compare Source
v1.0.141
Compare Source
no-std
category to crates.io metadatav1.0.140
Compare Source
v1.0.139
Compare Source
new
constructor function for allIntoDeserializer
impls (#2246)serde-rs/json
v1.0.91
Compare Source
-Zrustdoc-scrape-examples
on docs.rs for nowv1.0.90
Compare Source
v1.0.89
Compare Source
v1.0.88
Compare Source
append
andclone_from
(#952, thanks @Lucretiel)v1.0.87
Compare Source
write_i128
andwrite_u128
methods toserde_json::Formatter
to control the formatting of 128-bit integers (#940, thanks @Lucretiel)v1.0.86
Compare Source
arbitrary_precision
feature even in no-std mode (#928, thanks @kvinwang)v1.0.85
Compare Source
Display
forNumber
produce the same representation as serializing (#919)v1.0.84
Compare Source
Debug
impl ofserde_json::Value
more compact (#918)v1.0.83
Compare Source
shepmaster/snafu
v0.7.4
Compare Source
Changed
Report
and the[report]
macro now remove redundant parts fromthe messages that many errors duplicate from their underlying
sources.
v0.7.3
Compare Source
Fixed
types (such as backtraces) were used in conjunction with
#[snafu(source(from))]
and the type before transformation does notimplement
std::error::Error
.v0.7.2
Compare Source
Added
Report
can be returned frommain
or test functions to provide auser-friendly display of errors.
A cheat sheet for the most common
#[snafu(...)]
attribute usageshas been added to the
Snafu
macro's documentation.Optional support for using the standard library's
std::backtrace::Backtrace
type via thebacktraces-impl-std
feature flag.
Optional support for implementing the Provider API using the
std::error::Error::provide
method via theunstable-provider-api
feature flag.
Optional support for implementing the
core::error::Error
traitinstead of
std::error::Error
via theunstable-core-error
featureflag.
GenerateImplicitData
has a new methodgenerate_with_source
.Changed
ErrorCompat::iter_chain
andChainCompat
are now available inno_std environments.
ChainCompat
now implementsClone
.The
Debug
implementation forLocation
no longer shows someirrelevant internal details.
tokio-rs/tracing
v0.1.37
: tracing 0.1.37Compare Source
This release of
tracing
incorporates changes fromtracing-core
v0.1.30 and
tracing-attributes
v0.1.23,including the new
Subscriber::on_register_dispatch
method for performing lateinitialization after a
Subscriber
is registered as aDispatch
, and bugfixesfor the
#[instrument]
attribute. Additionally, it fixes instances of thebare_trait_objects
lint, which is now a warning ontracing
's MSRV and willbecome an error in the next edition.
Fixed
#[instrument]
edfunctions (#2307)
type errors in
#[instrument]
edasync fn
s (#2270)syn
dependency to fix compilation with-Z minimal-versions
(#2246)bare_trait_objects
warning invalueset!
macro expansion (#2308)Added
Subscriber::on_register_dispatch
method (#2269)WeakDispatch
type andDispatch::downgrade()
function (#2293)Changed
tracing-core
: updated to 0.1.30tracing-attributes
: updated to 0.1.23Documented
tracing-web
][tracing-web] and [reqwest-tracing
][reqwest-tracing] to related crates (#2283,#2331)
Thanks to new contributors @compiler-errors, @e-nomem, @WorldSEnder, @Xiami2012,
and @tl-rodrigo-gryzinski, as well as @jswrenn and @CAD97, for contributing to
this release!
v0.1.36
: tracing 0.1.36Compare Source
This release adds support for owned values and fat pointers as arguments to the
Span::record
method, as well as updating the minimumtracing-core
versionand several documentation improvements.
Fixed
dispatcher::set_default
(#2220)-Z minimal-versions
(#2246)Added
Span::record
(#2212)Changed
tracing-core
: updated to 0.1.29Thanks to @fredr, @cgbur, @jyn514, @matklad, and @CAD97 for contributing to this
release!
Configuration
📅 Schedule: Branch creation - "after 5:00 and before 6:00 every weekday" in timezone Europe/Berlin, Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR has been generated by Mend Renovate. View repository job log here.