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:
2.1.0
->2.3.0
0.1.53
->0.1.58
0.5.4
->0.5.6
0.2.126
->0.2.135
1.0.137
->1.0.147
1.0.81
->1.0.87
1.0.31
->1.0.37
0.1.34
->0.1.37
2.2.2
->2.3.1
Release Notes
Keruspe/async-global-executor
v2.3.0
Compare Source
v2.2.0
Compare Source
dtolnay/async-trait
v0.1.58
Compare Source
v0.1.57
Compare Source
v0.1.56
Compare Source
use parentheses to disambiguate: `(impl 'async_trait + Trait)`
(#204)v0.1.55
Compare Source
_
) when compiling in 2021 edition's closure capture rules (#199)v0.1.54
Compare Source
impl Trait
in an async function argument type (#177)crossbeam-rs/crossbeam
v0.5.6
Compare Source
v0.5.5
Compare Source
rust-lang/libc
v0.2.135
Compare Source
What's Changed
std
by @thomcc in https://github.com/rust-lang/libc/pull/2944i686-linux-android
on bors by @JohnTitor in https://github.com/rust-lang/libc/pull/2954New Contributors
Full Changelog: rust-lang/libc@0.2.134...0.2.135
v0.2.134
Compare Source
What's Changed
::Option
and notOption
forpthread_jit_write_callback_t
by @thomcc in https://github.com/rust-lang/libc/pull/2931New Contributors
Full Changelog: rust-lang/libc@0.2.133...0.2.134
v0.2.133
Compare Source
What's Changed
confstr
and guaranteed_CS_*
constants on apple by @thomcc in https://github.com/rust-lang/libc/pull/28832022091
by @JohnTitor in https://github.com/rust-lang/libc/pull/2912New Contributors
Full Changelog: rust-lang/libc@0.2.132...0.2.133
v0.2.132
Compare Source
What's Changed
New Contributors
Full Changelog: rust-lang/libc@0.2.131...0.2.132
v0.2.131
Compare Source
What's Changed
gnu_get_[version|release]
for glibc by @LegNeato in https://github.com/rust-lang/libc/pull/2862Full Changelog: rust-lang/libc@0.2.130...0.2.131
v0.2.130
Compare Source
What's Changed
New Contributors
Full Changelog: rust-lang/libc@0.2.129...0.2.130
v0.2.129
Compare Source
What's Changed
Full Changelog: rust-lang/libc@0.2.128...0.2.129
v0.2.128
Compare Source
This version has been yanked on crates.io, see https://github.com/rust-lang/libc/issues/2866 for the details.
What's Changed
f_flags_ext
member to Apple'sstatfs
structure by @poliorcetics in https://github.com/rust-lang/libc/pull/2858New Contributors
Full Changelog: rust-lang/libc@0.2.127...0.2.128
v0.2.127
Compare Source
What's Changed
swd
field to impls for user_fpregs_struct by @Minoru in https://github.com/rust-lang/libc/pull/2802IPV6_BOUND_IF
socket constant. by @devnexen in https://github.com/rust-lang/libc/pull/2801setre{g,u}id
alphabetically by @JohnTitor in https://github.com/rust-lang/libc/pull/2805libc_const_extern_fn
implicitly from Rust 1.62 by @JohnTitor in https://github.com/rust-lang/libc/pull/2820New Contributors
Full Changelog: rust-lang/libc@0.2.126...0.2.127
serde-rs/serde
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)v1.0.138
Compare Source
serde-rs/json
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
v1.0.82
Compare Source
From<Option<T>>
for serde_json::Value whereT: Into<Value>
(#900, thanks @kvnvelasco)dtolnay/thiserror
v1.0.37
Compare Source
v1.0.36
Compare Source
v1.0.35
Compare Source
provide
methods in scope" error when the caller has both std::error::Error and std::any::Provide traits in scope (#185)v1.0.34
Compare Source
v1.0.33
Compare Source
v1.0.32
Compare Source
tokio-rs/tracing
v0.1.37
Compare 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
Compare 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!
v0.1.35
Compare Source
This release reduces the overhead of callsite registration by using new
tracing-core
APIs.Added
DefaultCallsite
to reduce callsite registration overhead (#2083)Changed
tracing-core
: updated to 0.1.27servo/rust-url
v2.3.1
Compare Source
v2.3.0
Compare Source
Configuration
📅 Schedule: Branch creation - "every weekend" (UTC), 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.