chore(deps): update compatible #15902
Closed
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.98
->1.0.99
4.5.43
->4.5.46
4.5.56
->4.5.57
0.4.48
->0.4.49
0.4.82+curl-8.14.1
->0.4.83
0.2.25
->0.2.26
=6.3.1
->=6.3.2
2.10.0
->2.11.0
0.1.33
->0.1.34
0.2.174
->0.2.175
2.3.1
->2.3.2
1.11.1
->1.11.2
0.1.7
->0.1.8
1.0.142
->1.0.143
3.20.0
->3.21.0
2.0.12
->2.0.16
0.3.41
->0.3.42
0.23.3
->0.23.4
2.5.4
->2.5.7
Release Notes
dtolnay/anyhow (anyhow)
v1.0.99
Compare Source
clap-rs/clap (clap)
v4.5.46
Compare Source
Features
StyledStr::push_str
v4.5.45
Compare Source
Fixes
ValueEnum
variants now use the full doc comment, not summary, forPossibleValue::help
v4.5.44
Compare Source
Features
Command::mut_subcommands
alexcrichton/curl-rust (curl)
v0.4.49
Compare Source
alexcrichton/filetime (filetime)
v0.2.26
Compare Source
sunng87/handlebars-rust (handlebars)
v6.3.2
Compare Source
indexmap-rs/indexmap (indexmap)
v2.11.0
Compare Source
insert_sorted_by
andinsert_sorted_by_key
methods toIndexMap
,IndexSet
, andVacantEntry
, like customizable versions ofinsert_sorted
.is_sorted
,is_sorted_by
, andis_sorted_by_key
methods toIndexMap
andIndexSet
, as well as theirSlice
counterparts.sort_by_key
andsort_unstable_by_key
methods toIndexMap
andIndexSet
, as well as parallel counterparts.replace_index
methods toIndexMap
,IndexSet
, andVacantEntry
to replace the key (or set value) at a given index.
sval
serialization support.rust-lang/jobserver-rs (jobserver)
v0.1.34
Compare Source
rust-lang/libc (libc)
v0.2.175
Compare Source
Added
getpeereid
(#4524)struct ld_info
and friends (#4578)struct winsize
(#4577)CLONE_CLEAR_SIGHAND
andCLONE_INTO_CGROUP
(#4502)prctl
constants (#4531)mcontext_t.mc_tlsbase
(#4503)kinfo_proc.ki_uerrmsg
(#4552)in_conninfo
(#4482)xinpgen
and related types (#4482)xktls_session
(#4482)libbsd
(#4221)SECBIT_*
(#4480)ioctl
request generator macros (#4460)ptsname_r
(#4608)strftime*
(#4453)EXEC_RESTRICT_*
andEXEC_DENY_*
(#4545)Changed
const
to signatures to be consistent with other platforms (#4563)Fixed
struct statvfs.f_fsid
(#4576)ioctl
request
argument (#4582)stat{,64}.st_*tim
(#4597)errno
values (#4507)target_os
->target_arch
check (#4550)xktls_session_onedir.ifnet
(#4552)nlink_t
(#4509)stack_t
(#4528)SI_TIMER
,SI_MESGQ
andSI_ASYNCIO
definitions (#4529)si_errno
andsi_code
insiginfo_t
(#4530)statfs
(#4527)fanotify_event_metadata
(#4510)enum fae_action
to be#[repr(C)]
(#60a8cfd5)char
->c_char
(eaab4fc3)termios
definitions (#4518)EDEADLK
(#4517)NCCS
(#4513)MAP_LOCKED
andMAP_NORESERVE
(#4516)shmid_ds
(#4519)Deprecated
MAP_32BIT
is only defined on x86 on non-x86 architectures (#4511)Removed
FIND
andENTER
(#4588)O_FSYNC
(#4515)RTLD_DEEPBIND
(#4515)rust-lang/regex (regex)
v1.11.2
Compare Source
===================
This is a new patch release of
regex
with some minor fixes. A larger numberof typo or lint fix patches were merged. Also, we now finally recommend using
std::sync::LazyLock
.Improvements:
Switch recommendation from
once_cell
tostd::sync::LazyLock
.Add
DFA::set_prefilter
toregex-automata
.Bug fixes:
Remove
std
dependency fromperf-literal-multisubstring
crate feature.Clarify the meaning of
(?R)$
in the documentation.Remove
fuzz/
andrecord/
directories from published crate on crates.io.dtolnay/serde-untagged (serde-untagged)
v0.1.8
Compare Source
visit_none
(#10, thanks @epage)serde-rs/json (serde_json)
v1.0.143
Compare Source
Stebalien/tempfile (tempfile)
v3.21.0
Compare Source
windows-sys
requirement to allow version 0.60.xdtolnay/thiserror (thiserror)
v2.0.16
Compare Source
v2.0.15
Compare Source
Error::provide
API becoming unavailable from a future new compiler lint (#427)v2.0.14
Compare Source
v2.0.13
Compare Source
time-rs/time (time)
v0.3.42
Compare Source
Added
Time::duration_until
Time::duration_since
per_t
method for all types intime::convert
. This is similar to the existingper
method, butcan return any of the primitive numeric types that can represent the result. This will cut down on
as
casts while ensuring correctness. Type inference isn't perfect, so you may need to provide atype annotation in some situations.
impl PartialOrd for Month
andimpl Ord for Month
; this assumes the months are in the same yearSystemTimeExt
trait, adding methods for checked arithmetic withtime::Duration
and obtainingthe difference between two
SystemTime
s as atime::Duration
UtcDateTime
withrand
(this was inadvertently omitted previously)impl core::error::Error
for all error types (now available when thestd
feature is disabled)thread-safe.
#[track_caller]
has been added to all relevant methods.Changed
itoa
has been removed, as the standard library now has similar functionalityby default.
deterministic, avoiding any subtle differences between platforms or compiler versions.
Fixed
Previously, it could be off by one nanosecond due to floating point imprecision.
OffsetDateTime::to_offset
andUtcDateTime::to_offset
has beenfixed. The bug could result in a value that was invalid. It was unlikely to ever occur in
real-world code, as it involved passing a UTC offset that has never been used in any location.
Miscellaneous
typical use cases of
format_description!
.Time
,PrimitiveDateTime
,UtcDateTime
, andOffsetDateTime
. The first three have gains of approximately 85% (i.e. 6× faster).#[inline]
.toml-rs/toml (toml_edit)
v0.23.4
Compare Source
servo/rust-url (url)
v2.5.7
What's Changed
v.2.5.6
v.2.5.7
New Contributors
Full Changelog: servo/rust-url@v2.5.5...v2.5.7
v2.5.5
Compare Source
What's Changed
Mime
by @mrobinson in #1047cargo clippy --fix -- -Wclippy::use_self
by @mrobinson in #1048Url::domain
docs to show that it includes subdomain by @supercoolspy in #1057New Contributors
Full Changelog: servo/rust-url@v2.5.4...v2.5.5
Configuration
📅 Schedule: Branch creation - "before 5am on the first day of the month" (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 was generated by Mend Renovate. View the repository job log.