Bumps the cargo group with 17 updates in the / directory:
Updates anyhow from 1.0.98 to 1.0.99
Release notes
Sourced from anyhow's releases.
1.0.99
- Allow build-script cleanup failure with NFSv3 output directory to be non-fatal (#420)
Commits
f2b963a Release 1.0.99
2c64c15 Merge pull request #420 from dtolnay/enotempty
8cf66f7 Allow build-script cleanup failure with NFSv3 output directory to be non-fatal
f5e145c Revert "Pin nightly toolchain used for miri job"
1d7ef1d Update ui test suite to nightly-2025年06月30日
6929572 Update ui test suite to nightly-2025年06月18日
37224e3 Ignore mismatched_lifetime_syntaxes lint
11f0e81 Pin nightly toolchain used for miri job
d04c999 Raise required compiler for backtrace feature to rust 1.82
219d163 Update test suite to nightly-2025年05月01日
- See full diff in compare view
Updates backtrace from 0.3.74 to 0.3.75
Release notes
Sourced from backtrace's releases.
0.3.75
What's Changed
New Contributors
Full Changelog: rust-lang/backtrace-rs@0.3.74...0.3.75
Commits
f8cc6ac Merge pull request #680 from ChrisDenton/0.3.75
612c018 Cut backtrace 0.3.75
d7c5a45 Merge pull request #689 from workingjubilee/formalize-lru
c88b038 Revert "mem::swap, not mem::replace, in LRU backshifts"
b7fbd04 mem::swap, not mem::replace, in LRU backshifts
3afccb1 raise backtrace MSRV to allow inline_const
63b7d26 Use a custom container for Cache's cache
154a0ea Update libloading dep, run cargo updaterust-lang/backtrace-rs#650
4d7906b rust-lang/backtrace-rs#682
a9c4658 Test Mac Catalyst in CI, and clean up unnecessary iOS env flags (rust-lang/ba...
- Additional commits viewable in compare view
Updates clap from 4.5.38 to 4.5.45
Release notes
Sourced from clap's releases.
v4.5.45
[4.5.45] - 2025年08月12日
Fixes
- (unstable-v5)
ValueEnum variants now use the full doc comment, not summary, for PossibleValue::help
v4.5.44
[4.5.44] - 2025年08月11日
Features
- Add
Command::mut_subcommands
v4.5.43
[4.5.43] - 2025年08月06日
Fixes
- (help) In long help, list Possible Values before defaults, rather than after, for a more consistent look
v4.5.42
[4.5.42] - 2025年07月30日
Fixes
- Include subcommand visible long aliases in
--help
v4.5.39
[4.5.39] - 2025年05月27日
Fixes
- (help) Show short flag aliases before long
- (help) Merge the short and long flag alias lists
Changelog
Sourced from clap's changelog.
[4.5.45] - 2025年08月12日
Fixes
- (unstable-v5)
ValueEnum variants now use the full doc comment, not summary, for PossibleValue::help
[4.5.44] - 2025年08月11日
Features
- Add
Command::mut_subcommands
[4.5.43] - 2025年08月06日
Fixes
- (help) In long help, list Possible Values before defaults, rather than after, for a more consistent look
[4.5.42] - 2025年07月30日
Fixes
- Include subcommand visible long aliases in
--help
[4.5.41] - 2025年07月09日
Features
- Add
Styles::context and Styles::context_value to customize the styling of [default: value] like notes in the --help
[4.5.40] - 2025年06月09日
Features
- Support quoted ids in
arg!() macro (e.g. arg!("check-config": ...))
[4.5.39] - 2025年05月27日
Fixes
- (help) Show short flag aliases before long
- (help) Merge the short and long flag alias lists
Commits
246d972 chore: Release
a35a076 docs: Update changelog
9b985a3 Merge pull request #5912 from epage/takes
389fbe8 feat(builder): Allow flags to take num_args=0..=1
c395d02 test(parser): Show flag behavior
32c119e refactor(assert): Be more specific than action.takes_values
80ea3e7 fix(assert): Clean up num_args/action assert
2bc0f45 fix(builder): Make ValueRange display independent of usize::MAX
a0187c6 test(assert): Verify num_args/action compat
a8f9885 refactor(builder): Be more explicit in how takes_values is used
- Additional commits viewable in compare view
Updates crossterm from 0.28.1 to 0.29.0
Release notes
Sourced from crossterm's releases.
0.29
Version 0.29
Added ⭐
- Copy to clipboard using OSC52 (#974)
- Derive standard traits for "SetCursorStyle" (#909)
- Add query_keyboard_enhancement_flags to read enabled flags (#958)
- Add is_* and as_* methods to the event enums (#949)
- Add a feature flag for derive_more impls (#970)
- Update rustix to 1.0 (#982)
- Upgrade various dependencies
Breaking ⚠️
- Correctly fix KeyModifiers Display impl Properly adding + in between modifiers (#979)
@joshka @linrongbin16 @kmicklas @maciek50322 @rosew0od @sxyazi @the-mikedavis @hthuz @aschey @naseschwarz @Flokkq @gaesa @WindSoilder
Changelog
Sourced from crossterm's changelog.
Unreleased
Version 0.29
Added ⭐
- Copy to clipboard using OSC52 (#974)
- Derive standard traits for "SetCursorStyle" (#909)
- Add query_keyboard_enhancement_flags to read enabled flags (#958)
- Add is_* and as_* methods to the event enums (#949)
- Add a feature flag for derive_more impls (#970)
- Update rustix to 1.0 (#982)
Breaking ⚠️
- Correctly fix KeyModifiers Display impl Properly adding + in between modifiers (#979)
Commits
Updates indexmap from 2.9.0 to 2.10.0
Changelog
Sourced from indexmap's changelog.
2.10.0 (2025年06月26日)
- Added
extract_if methods to IndexMap and IndexSet, similar to the
methods for HashMap and HashSet with ranges like Vec::extract_if.
- Added more
#[track_caller] annotations to functions that may panic.
Commits
91dbcc5 Merge pull request #399 from cuviper/release-2.10.0
67a5a71 Release 2.10.0
37e519a Merge pull request #308 from cuviper/extract_if
4d7618f Merge pull request #398 from cuviper/bench-deps
68201eb Drop lazy_static for LazyLock
eaaaa56 Switch to fastrand for bench shuffling
b19d84e Fix clippy::needless_lifetimes
4f62778 impl FusedIterator for ExtractIf
e09eaaf Document and track extract_if panics
a8d7dc5 Add range support to extract_if
- Additional commits viewable in compare view
Updates log from 0.4.26 to 0.4.27
Release notes
Sourced from log's releases.
0.4.27
What's Changed
Full Changelog: rust-lang/log@0.4.26...0.4.27
Changelog
Sourced from log's changelog.
[0.4.27] - 2025年03月24日
What's Changed
Full Changelog: rust-lang/log@0.4.26...0.4.27
Commits
35161d0 Merge pull request #674 from rust-lang/cargo/0.4.27
cc131ef prepare for 0.4.27 release
ea6f54d Merge pull request #673 from rust-lang/feat/logger-by-ref
d229c73 fix unclosed code block
02486e4 fill in more tests for logger argument
71e034f expand logger tests
dfa067e fix up kv passing
39d4c3a run fmt
7aacc8f pass global logger by value, supplied logger by ref
a438c6e Merge pull request #664 from tisonkun/logger-field
- Additional commits viewable in compare view
Updates notify from 8.0.0 to 8.2.0
Release notes
Sourced from notify's releases.
notify-8.2.0
notify 8.2.0 (2025年08月03日)
- FEATURE: notify user if inotify's
max_user_watches has been reached #698
- FIX:
INotifyWatcher ignore events with unknown watch descriptors (instead of EventMask::Q_OVERFLOW) #700
#698: notify-rs/notify#698
#700: notify-rs/notify#700
debouncer-full 0.6.0 (2025年08月03日)
- FEATURE: allow
FileIdCache trait implementations to choose ownership of the returned file-ids #664
- FEATURE: added support for the
flume crate #680
- FIX: skip all
Modify events right after a Create event, unless it's a rename event #701
#664: notify-rs/notify#664
#680: notify-rs/notify#680
#701: notify-rs/notify#701
debouncer-mini 0.7.0 (2025年08月03日)
- FEATURE: added support for the
flume crate #680
file-id 0.2.3 (2025年08月03日)
- CHANGE: implement
AsRef<FileId> for FileId #664
Full Changelog: notify-rs/notify@notify-8.1.0...notify-8.2.0
notify v8.1.0
What's Changed
New Contributors
... (truncated)
Changelog
Sourced from notify's changelog.
notify 8.2.0 (2025年08月03日)
- FEATURE: notify user if inotify's
max_user_watches has been reached #698
- FIX:
INotifyWatcher ignore events with unknown watch descriptors (instead of EventMask::Q_OVERFLOW) #700
#698: notify-rs/notify#698
#700: notify-rs/notify#700
debouncer-full 0.6.0 (2025年08月03日)
- FEATURE: allow
FileIdCache trait implementations to choose ownership of the returned file-ids #664
- FEATURE: added support for the
flume crate #680
- FIX: skip all
Modify events right after a Create event, unless it's a rename event #701
#664: notify-rs/notify#664
#680: notify-rs/notify#680
#701: notify-rs/notify#701
debouncer-mini 0.7.0 (2025年08月03日)
- FEATURE: added support for the
flume crate #680
file-id 0.2.3 (2025年08月03日)
- CHANGE: implement
AsRef<FileId> for FileId #664
notify 8.1.0 (2025年07月03日)
- FEATURE: added support for the
flume crate
- FIX: kqueue-backend: do not double unwatch top-level directory when recursively unwatching #683
- FIX: Return the crate error
PathNotFound instead bubbling up the std::io error #685
- FIX: fix server hangs when trashing folders on Windows #674
Commits
a1d7c2d Prepare release (#706)
c685ea7 Skip all Modify events right after a Create event, unless it's a rename e...
e36d54e fix: INotifyWatcher may raise events with no paths (#700)
394ef18 feat(inotify): notify a user if the max_user_watches has been reached impli...
04473de chore: Prepare 8.1.0 release (#697)
12a026d fix: make PathsMut::commit consuming (#695)
d824023 feat: introduce Watcher::paths_mut for adding/removing paths in batch (#692)
b984134 Do not clone paths while walking dirs (#693)
416ba82 chore: Use MSRV for Clippy and rustfmt (#694)
10ce3ef Update windows-sys to v0.60 (#691)
- Additional commits viewable in compare view
Updates notify-debouncer-mini from 0.6.0 to 0.7.0
Changelog
Sourced from notify-debouncer-mini's changelog.
debouncer-full 0.6.0 (2025年08月03日)
- FEATURE: allow
FileIdCache trait implementations to choose ownership of the returned file-ids #664
- FEATURE: added support for the
flume crate #680
- FIX: skip all
Modify events right after a Create event, unless it's a rename event #701
#664: notify-rs/notify#664
#680: notify-rs/notify#680
#701: notify-rs/notify#701
debouncer-mini 0.7.0 (2025年08月03日)
- FEATURE: added support for the
flume crate #680
file-id 0.2.3 (2025年08月03日)
- CHANGE: implement
AsRef<FileId> for FileId #664
notify 8.1.0 (2025年07月03日)
- FEATURE: added support for the
flume crate
- FIX: kqueue-backend: do not double unwatch top-level directory when recursively unwatching #683
- FIX: Return the crate error
PathNotFound instead bubbling up the std::io error #685
- FIX: fix server hangs when trashing folders on Windows #674
notify 8.0.0 (2025年01月10日)
- CHANGE: update notify-types to version 2.0.0
- CHANGE: raise MSRV to 1.77 breaking
- FEATURE: add config option to disable following symbolic links #635
- FIX: unaligned access to FILE_NOTIFY_INFORMATION #647 breaking
#635: notify-rs/notify#635
#647: notify-rs/notify#647
notify-types 2.0.0 (2025年01月10日)
- CHANGE: replace instant crate with web-time #652 breaking
- CHANGE: the web-time dependency is now behind the
web-time feature breaking
#652: notify-rs/notify#652
debouncer-mini 0.6.0 (2025年01月10日)
- CHANGE: update notify to version 8.0.0
debouncer-full 0.5.0 (2025年01月10日)
- CHANGE: update notify to version 8.0.0
- CHANGE: pass
web-time feature to notify-types
notify-types 1.0.1 (2024年12月17日)
- FIX:
Event::kind serialization with serialization-compat-6 feature #660
... (truncated)
Commits
Updates parking_lot_core from 0.9.10 to 0.9.11
Changelog
Sourced from parking_lot_core's changelog.
parking_lot_core - 0.9.11 - 2025年05月29日
- Use Release/Acquire ordering in thread_parker::windows::Backend::create
- Remove warnings due to new lint on unknown cfgs
lock_api - 0.4.13 - 2025年05月29日
- Remove warnings due to new lint on unknown cfgs
parking_lot 0.12.3 (2024年05月24日)
- Export types provided by arc_lock feature (#442)
Commits
df66e66 Update CHANGELOG.md
bc72f02 chore: release
7bd09e2 Merge pull request #469 from Amanieu/release-plz-changelog
965216f Use a single changelog with release-plz
398560e Merge pull request #467 from Amanieu/release-plz
a7c490f Add release-plz for automatic releases
4989a4f Merge pull request #466 from Amanieu/issue-465
249cb2a Fix parked upgraders potentially not being woken up after a write lock
a0d2de0 Fix clearing PARKED_WRITER_BIT after a timeout
03b0192 Merge pull request #464 from Amanieu/ci-msrv
- Additional commits viewable in compare view
Updates rayon-core from 1.12.1 to 1.13.0
Changelog
Sourced from rayon-core's changelog.
Release rayon 1.11.0 / rayon-core 1.13.0 (2025年08月12日)
- The minimum supported
rustc is now 1.80.
iter::repeatn has been renamed to iter::repeat_n to match the name
stabilized in the standard library. The old name still exists as a deprecated
function for compatibility.
- Fixed a bug in
in_place_scope when the default global registry uses the
current thread, like on WebAssembly without threading support.
binary_heap::Iter no longer requires a temporary allocation.
- Relaxed trait bounds on many of the public structs.
- Implemented
IntoParallelIterator for Box<[T]> and its references.
- Implemented
FromParallelIterator<_> for Box<str> via String.
Release rayon 1.10.0 (2024年03月23日)
- The new methods
ParallelSlice::par_chunk_by and
ParallelSliceMut::par_chunk_by_mut work like the slice methods chunk_by
and chunk_by_mut added in Rust 1.77.
Release rayon 1.9.0 (2024年02月27日)
- The new methods
IndexedParallelIterator::by_exponential_blocks and
by_uniform_blocks allow processing items in smaller groups at a time.
- The new
iter::walk_tree, walk_tree_prefix, and walk_tree_postfix
functions enable custom parallel iteration over tree-like structures.
- The new method
ParallelIterator::collect_vec_list returns items as a linked
list of vectors, which is an efficient mode of parallel collection used by
many of the internal implementations of collect.
- The new methods
ParallelSliceMut::par_split_inclusive_mut,
ParallelSlice::par_split_inclusive, and
ParallelString::par_split_inclusive all work like a normal split but
keeping the separator as part of the left slice.
- The new
ParallelString::par_split_ascii_whitespace splits only on ASCII
whitespace, which is faster than including Unicode multi-byte whitespace.
OsString now implements FromParallelIterator<_> and ParallelExtend<_>
for a few item types similar to the standard FromIterator and Extend.
- The internal
Pattern trait for string methods is now implemented for
[char; N] and &[char; N], matching any of the given characters.
Commits
7af20d7 Merge pull request #1265 from cuviper/release-1.11.0
c86161a Release rayon 1.11.0 / rayon-core 1.13.0
72345cb Merge pull request #1264 from cuviper/mem-prelude
b4c58af Merge pull request #1263 from cuviper/boxed
8fdeaf3 Use size_of/size_of_val from the prelude
2a85fbf impl FromParallelIterator\<_> for Box\<str> via String
760a97c impl\<T> IntoParallelIterator for Box\<[T]> and its refs
dcea664 Merge pull request #1262 from cuviper/relax-bounds
3d63a87 Relax trait bounds on many structs
0baaff5 Merge pull request #1261 from cuviper/compounds
- Additional commits viewable in compare view
Updates struct-patch from 0.9.4 to 0.10.3
Commits
Updates which from 7.0.2 to 8.0.0
Release notes
Sourced from which's releases.
8.0.0
What's Changed
- Add new
Sys trait to allow abstracting over the underlying filesystem. Particularly useful for wasm32-unknown-unknown targets. Thanks @dsherret for this contribution to which!
- Add more debug level tracing for otherwise silent I/O errors.
- Call the
NonFatalHandler in more places to catch previously ignored I/O errors.
- Remove use of the
either dependency.
New Contributors
7.0.3
- Update rustix to version 1.0. Congrats to rustix on this milestone, and thanks
@mhils for this contribution to which!
Changelog
Sourced from which's changelog.
8.0.0
- Add new
Sys trait to allow abstracting over the underlying filesystem. Particularly useful for wasm32-unknown-unknown targets. Thanks @dsherret for this contribution to which!
- Add more debug level tracing for otherwise silent I/O errors.
- Call the
NonFatalHandler in more places to catch previously ignored I/O errors.
- Remove use of the
either dependency.
7.0.3
- Update rustix to version 1.0. Congrats to rustix on this milestone, and thanks
@mhils for this contribution to which!
Commits
adac2cd bump version, update changelog
84e152e reduce sys::Sys requirements, add some tracing for otherwise silent errors (#...
a0a6daf feat: add Sys trait for swapping out system (#109)
eef1998 Add actively maintained badge
1d145de release version 7.0.3
f5e5292 fix unrelated lint error
4dcefa6 bump rustix
- See full diff in compare view
Updates tempfile from 3.15.0 to 3.20.0
Changelog
Sourced from tempfile's changelog.
3.20.0
This release mostly unifies the behavior/capabilities around "keeping" temporary files:
- Rename
Builder::keep(bool) (via deprecation) to Builder::disable_cleanup(bool) to make it clear that behaves differently from NamedTempFile::keep(). The former disables automatic cleanup while the latter consumes the NamedTempFile object entirely and unsets the "temporary file" attribute (on Windows).
- Rename
TempDir::into_path (via deprecation) to TempDir::keep to mirror NamedTempFile::keep.
- Add
TempDir::disable_cleanup, NamedTempFile::disable_cleanup, and TempPath::disable_cleanup making it possible to disable automatic cleanup in-place after creating a temporary file/directory (equivalent to calling Builder::disable_cleanup before creating the file/directory).
Additionally, it adds a few spooled temporary file features:
- Add
SpooledTempFile::into_file for turning a SpooledTempFile into a regular unnamed temporary file, writing it to the backing storage ("rolling" it) if it was still stored in-memory.
- Add
spooled_tempfile_in and SpooledTempFile::new_in methods for creating spooled temporary files in a specific directory. This makes it possible to choose the backing device for your spooled temporary file which is rather important on Linux where the default temporary directory is likely backed by memory (defeating the entire point of having a spooled temporary file).
Finally, this release improves documentation, especially the top-level documentation explaining which temporary file type to use.
BREAKING for those with deny(warnings):
Builder::keep deprecated in favor of Builder::disable_cleanup.
TempDir::into_path is deprecated in favor of TempDir::keep.
BREAKING:
3.19.1
- Don't unlink temporary files immediately on Windows (fixes #339). Unfortunately, this seemed to corrupt the file object (possibly a Windows kernel bug) in rare cases and isn't strictly speaking necessary.
3.19.0
- Remove direct dependency on
cfg-if. It's still in the tree, but we didn't really need to use it in this crate.
- Add an unstable feature (
unstable-windows-keep-open-tempfile) to test a potential fix to #339.
3.18.0
- Update
rustix to 1.0.0.
- Make
NamedTempFile::persist_noclobber atomic on Apple operating systems. It's now atomic on MacOS, Windows, and Linux (depending on the OS version and filesystem used).
3.17.1
- Fix build with
windows-sys 0.52. Unfortunately, we have no CI for older windows-sys versions at the moment...
3.17.0
- Make sure to use absolute paths in when creating unnamed temporary files (avoids a small race in the "immediate unlink" logic) and in
Builder::make_in (when creating temporary files of arbitrary types).
- Prevent a theoretical crash that could (maybe) happen when a temporary file is created from a drop function run in a TLS destructor. Nobody has actually reported a case of this happening in practice and I have been unable to create this scenario in a test.
- When reseeding with
getrandom, use platform (e.g., CPU) specific randomness sources where possible.
- Clarify some documentation.
- Unlink unnamed temporary files on windows immediately when possible instead of waiting for the handle to be closed. We open files with "Unix" semantics, so this is generally possible.
3.16.0
... (truncated)
Commits
99ffea6 chore: release v3.20.0 (#358)
bd2b267 feat: make it possible to disable cleanup in-place after creation (#355)
3b30099 ci: really check docs for warnings (#357)
f701f52 ci: check docs (#356)
d34afe9 doc: improve SpooledData documentation
6deb42e doc: make it easier to pick the correct tempfile constructor/type
e284782 feat: allow creating spooled temporary files in a specific directory (#353)
07edc31 feat: implement SpooledTempFile::into_file (#352)
b122355 fix: add must_use attribute to TempDir::keep (#351)
cbd1e97 feat: rename TempDir::into_path to TempDir::keep (#349)
- Additional commits viewable in compare view
Updates gix from 0.71.0 to 0.73.0
Release notes
Sourced from gix's releases.
gix v0.73.0
New Features
- add
repo.references().pseudo() for traversing refs like HEAD and FETCH_HEAD.
- add
Repository::committer_or_set_generic_fallback().
That way one can always obtain a committer, even though it might
not represent the entity actually committing.
- add
revision::walk::Platform::hide().
This finally makes safe traversals possible and is what most people would want to use
instead of boundary().
- add
gitoxide.parsePrecious configuration key to opt-in to precious file parsing.
- add
Repository::is_empty() to emulate the similar git2 API
- add
Repository::merge_bases_many() for simplified retrieval of multiple mergebases.
- add
tree::EntryRef::to_owned().
That way it's in a more reasonable spot as sibling to Entry and it's clearer how to convert noe into the other.
- add
EntryRef::kind() as shortcut for EntryRef::mode().kind().
Bug Fixes
- don't panic if
remote::Connection::ref_map() doesn't finish the handshake
Repository::branch_remote_ref_name() won't fail on short names anymore.
Instead, these partial names are turned into branch names, which seems more
in line with what Git can do.
strict_config in conjunction with GIT_WORK_TREE no longer triggers an error.
Other
- Fixed no_locations options for diffing
Bug Fixes (BREAKING)
- allow querying
Repository::submodules() in an unborn repository.
It's a breaking change merely because the error type changed.
Commit Statistics
- 52 commits contributed to the release over the course of 79 calendar days.
- 79 days passed between releases.
- 13 commits were understood as conventional.
- 2 unique issues were worked on: #1985, #2055
Thanks Clippy
Clippy helped 1 time to make code idiomatic.
Commit Details
... (truncated)
Commits
Uh oh!
There was an error while loading. Please reload this page.
Bumps the cargo group with 17 updates in the / directory:
1.0.981.0.990.3.740.3.754.5.384.5.450.28.10.29.02.9.02.10.00.4.260.4.278.0.08.2.00.6.00.7.00.9.100.9.111.12.11.13.00.9.40.10.37.0.28.0.03.15.03.20.00.71.00.73.00.9.1080.9.1091.10.01.11.02.0.122.0.14Updates
anyhowfrom 1.0.98 to 1.0.99Release notes
Sourced from anyhow's releases.
Commits
f2b963aRelease 1.0.992c64c15Merge pull request #420 from dtolnay/enotempty8cf66f7Allow build-script cleanup failure with NFSv3 output directory to be non-fatalf5e145cRevert "Pin nightly toolchain used for miri job"1d7ef1dUpdate ui test suite to nightly-2025年06月30日6929572Update ui test suite to nightly-2025年06月18日37224e3Ignore mismatched_lifetime_syntaxes lint11f0e81Pin nightly toolchain used for miri jobd04c999Raise required compiler for backtrace feature to rust 1.82219d163Update test suite to nightly-2025年05月01日Updates
backtracefrom 0.3.74 to 0.3.75Release notes
Sourced from backtrace's releases.
Commits
f8cc6acMerge pull request #680 from ChrisDenton/0.3.75612c018Cut backtrace 0.3.75d7c5a45Merge pull request #689 from workingjubilee/formalize-lruc88b038Revert "mem::swap, not mem::replace, in LRU backshifts"b7fbd04mem::swap, not mem::replace, in LRU backshifts3afccb1raise backtrace MSRV to allowinline_const63b7d26Use a custom container for Cache's cache154a0eaUpdate libloading dep, runcargo updaterust-lang/backtrace-rs#6504d7906brust-lang/backtrace-rs#682a9c4658Test Mac Catalyst in CI, and clean up unnecessary iOS env flags (rust-lang/ba...Updates
clapfrom 4.5.38 to 4.5.45Release notes
Sourced from clap's releases.
Changelog
Sourced from clap's changelog.
Commits
246d972chore: Releasea35a076docs: Update changelog9b985a3Merge pull request #5912 from epage/takes389fbe8feat(builder): Allow flags to take num_args=0..=1c395d02test(parser): Show flag behavior32c119erefactor(assert): Be more specific than action.takes_values80ea3e7fix(assert): Clean up num_args/action assert2bc0f45fix(builder): Make ValueRange display independent of usize::MAXa0187c6test(assert): Verify num_args/action compata8f9885refactor(builder): Be more explicit in how takes_values is usedUpdates
crosstermfrom 0.28.1 to 0.29.0Release notes
Sourced from crossterm's releases.
Changelog
Sourced from crossterm's changelog.
Commits
Updates
indexmapfrom 2.9.0 to 2.10.0Changelog
Sourced from indexmap's changelog.
Commits
91dbcc5Merge pull request #399 from cuviper/release-2.10.067a5a71Release 2.10.037e519aMerge pull request #308 from cuviper/extract_if4d7618fMerge pull request #398 from cuviper/bench-deps68201ebDrop lazy_static for LazyLockeaaaa56Switch to fastrand for bench shufflingb19d84eFixclippy::needless_lifetimes4f62778impl FusedIterator for ExtractIfe09eaafDocument and trackextract_ifpanicsa8d7dc5Add range support toextract_ifUpdates
logfrom 0.4.26 to 0.4.27Release notes
Sourced from log's releases.
Changelog
Sourced from log's changelog.
Commits
35161d0Merge pull request #674 from rust-lang/cargo/0.4.27cc131efprepare for 0.4.27 releaseea6f54dMerge pull request #673 from rust-lang/feat/logger-by-refd229c73fix unclosed code block02486e4fill in more tests for logger argument71e034fexpand logger testsdfa067efix up kv passing39d4c3arun fmt7aacc8fpass global logger by value, supplied logger by refa438c6eMerge pull request #664 from tisonkun/logger-fieldUpdates
notifyfrom 8.0.0 to 8.2.0Release notes
Sourced from notify's releases.
... (truncated)
Changelog
Sourced from notify's changelog.
Commits
a1d7c2dPrepare release (#706)c685ea7Skip allModifyevents right after aCreateevent, unless it's a rename e...e36d54efix: INotifyWatcher may raise events with no paths (#700)394ef18feat(inotify): notify a user if themax_user_watcheshas been reached impli...04473dechore: Prepare 8.1.0 release (#697)12a026dfix: makePathsMut::commitconsuming (#695)d824023feat: introduceWatcher::paths_mutfor adding/removing paths in batch (#692)b984134Do not clone paths while walking dirs (#693)416ba82chore: Use MSRV for Clippy and rustfmt (#694)10ce3efUpdatewindows-systo v0.60 (#691)Updates
notify-debouncer-minifrom 0.6.0 to 0.7.0Changelog
Sourced from notify-debouncer-mini's changelog.
... (truncated)
Commits
Updates
parking_lot_corefrom 0.9.10 to 0.9.11Changelog
Sourced from parking_lot_core's changelog.
Commits
df66e66Update CHANGELOG.mdbc72f02chore: release7bd09e2Merge pull request #469 from Amanieu/release-plz-changelog965216fUse a single changelog with release-plz398560eMerge pull request #467 from Amanieu/release-plza7c490fAdd release-plz for automatic releases4989a4fMerge pull request #466 from Amanieu/issue-465249cb2aFix parked upgraders potentially not being woken up after a write locka0d2de0Fix clearingPARKED_WRITER_BITafter a timeout03b0192Merge pull request #464 from Amanieu/ci-msrvUpdates
rayon-corefrom 1.12.1 to 1.13.0Changelog
Sourced from rayon-core's changelog.
Commits
7af20d7Merge pull request #1265 from cuviper/release-1.11.0c86161aRelease rayon 1.11.0 / rayon-core 1.13.072345cbMerge pull request #1264 from cuviper/mem-preludeb4c58afMerge pull request #1263 from cuviper/boxed8fdeaf3Usesize_of/size_of_valfrom the prelude2a85fbfimpl FromParallelIterator\<_> for Box\<str>viaString760a97cimpl\<T> IntoParallelIterator for Box\<[T]>and its refsdcea664Merge pull request #1262 from cuviper/relax-bounds3d63a87Relax trait bounds on many structs0baaff5Merge pull request #1261 from cuviper/compoundsUpdates
struct-patchfrom 0.9.4 to 0.10.3Commits
8aed78aFixnestingwithstatusfeature (#101)f9d60b6fix nesting with other features (#100)52f0a9denable nesting feature for derive2492b24Add nesting feature (#98)f4915a5Bump crate-ci/typos from 1.31.2 to 1.32.0 (#96)Updates
whichfrom 7.0.2 to 8.0.0Release notes
Sourced from which's releases.
Changelog
Sourced from which's changelog.
Commits
adac2cdbump version, update changelog84e152ereduce sys::Sys requirements, add some tracing for otherwise silent errors (#...a0a6daffeat: add Sys trait for swapping out system (#109)eef1998Add actively maintained badge1d145derelease version 7.0.3f5e5292fix unrelated lint error4dcefa6bump rustixUpdates
tempfilefrom 3.15.0 to 3.20.0Changelog
Sourced from tempfile's changelog.
... (truncated)
Commits
99ffea6chore: release v3.20.0 (#358)bd2b267feat: make it possible to disable cleanup in-place after creation (#355)3b30099ci: really check docs for warnings (#357)f701f52ci: check docs (#356)d34afe9doc: improve SpooledData documentation6deb42edoc: make it easier to pick the correct tempfile constructor/typee284782feat: allow creating spooled temporary files in a specific directory (#353)07edc31feat: implementSpooledTempFile::into_file(#352)b122355fix: add must_use attribute to TempDir::keep (#351)cbd1e97feat: renameTempDir::into_pathtoTempDir::keep(#349)Updates
gixfrom 0.71.0 to 0.73.0Release notes
Sourced from gix's releases.
... (truncated)
Commits
5a919c4Release gix-date v0.10.3, gix-actor v0.35.2, gix-trace v0.1.13, gix-path v0.1...65037b5update changelogs prior to releasea8b5751fix:gix submodule listnow prints the submodule path in debug modea773854fix: improve error message for when there is too many packs.45b369cdoc: ...Description has been truncated