Bumps the cargo-minor group with 8 updates in the / directory:
Updates bitflags from 2.9.1 to 2.10.0
Release notes
Sourced from bitflags's releases.
2.10.0
What's Changed
New Contributors
Full Changelog: bitflags/bitflags@2.9.4...2.10.0
2.9.4
What's Changed
Full Changelog: bitflags/bitflags@2.9.3...2.9.4
2.9.3
What's Changed
New Contributors
Full Changelog: bitflags/bitflags@2.9.2...2.9.3
2.9.2
What's Changed
Full Changelog: bitflags/bitflags@2.9.1...2.9.2
Changelog
Sourced from bitflags's changelog.
2.10.0
What's Changed
New Contributors
Full Changelog: bitflags/bitflags@2.9.4...2.10.0
2.9.4
What's Changed
Full Changelog: bitflags/bitflags@2.9.3...2.9.4
2.9.3
What's Changed
New Contributors
Full Changelog: bitflags/bitflags@2.9.2...2.9.3
2.9.2
What's Changed
Full Changelog: bitflags/bitflags@2.9.1...2.9.2
Commits
7cc8595 Merge pull request #468 from bitflags/cargo/2.10.0
ea9b2f7 prepare for 2.10.0 release
7fdc68c Merge pull request #467 from KodrAus/feat/serde_core
fdc1d4a depend on serde_core instead of serde
7922585 Merge pull request #466 from KodrAus/chore/iter-named-tests
409666e rename iter_named to iter_defined_names
50fab91 Merge pull request #465 from ssrlive/main
f886489 Fix bitflags_custom_bits.stderr & bitflags_trait_custom.stderr
39bd761 rename all_named_flags to iter_named
3e52578 Implement iterator for all named flags
- Additional commits viewable in compare view
Updates bytesize from 2.0.1 to 2.1.0
Release notes
Sourced from bytesize's releases.
bytesize: v2.1.0
- Support parsing and formatting exabytes (EB) & exbibytes (EiB).
- Migrate
serde dependency to serde_core.
Changelog
Sourced from bytesize's changelog.
2.1.0
- Support parsing and formatting exabytes (EB) & exbibytes (EiB).
- Migrate
serde dependency to serde_core.
Commits
ac756bb chore(bytesize): prepare release 2.1.0
3a0de52 chore: migrate to serde_core
e816797 feat: add exabyte and exbibyte support (#101)
3b89d01 chore(deps): bump actions/checkout from 4 to 5 (#105)
62e38cb chore(deps): bump actions-rust-lang/setup-rust-toolchain (#104)
4beb271 chore(deps): bump codecov/codecov-action from 5.4.3 to 5.5.0 (#106)
731c44c chore(deps): bump taiki-e/install-action from 2.57.8 to 2.58.29 (#107)
6613704 chore(deps): bump arbitrary from 1.4.1 to 1.4.2 (#108)
1463664 chore(deps): bump serde_json from 1.0.142 to 1.0.143 (#109)
8476c8a fix(ci): use variables directly in formatting for clippy (#103)
- Additional commits viewable in compare view
Updates indexmap from 2.9.0 to 2.12.0
Changelog
Sourced from indexmap's changelog.
2.12.0 (2025年10月17日)
- MSRV: Rust 1.82.0 or later is now required.
- Updated the
hashbrown dependency to 0.16 alone.
- Error types now implement
core::error::Error.
- Added
pop_if methods to IndexMap and IndexSet, similar to the
method for Vec added in Rust 1.86.
2.11.4 (2025年09月18日)
- Updated the
hashbrown dependency to a range allowing 0.15 or 0.16.
2.11.3 (2025年09月15日)
- Make the minimum
serde version only apply when "serde" is enabled.
2.11.2 (2025年09月15日)
- Switched the "serde" feature to depend on
serde_core, improving build
parallelism in cases where other dependents have enabled "serde/derive".
2.11.1 (2025年09月08日)
- Added a
get_key_value_mut method to IndexMap.
- Removed the unnecessary
Ord bound on insert_sorted_by methods.
2.11.0 (2025年08月22日)
- Added
insert_sorted_by and insert_sorted_by_key methods to IndexMap,
IndexSet, and VacantEntry, like customizable versions of insert_sorted.
- Added
is_sorted, is_sorted_by, and is_sorted_by_key methods to
IndexMap and IndexSet, as well as their Slice counterparts.
- Added
sort_by_key and sort_unstable_by_key methods to IndexMap and
IndexSet, as well as parallel counterparts.
- Added
replace_index methods to IndexMap, IndexSet, and VacantEntry
to replace the key (or set value) at a given index.
- Added optional
sval serialization support.
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
0e68f8a Merge pull request #422 from cuviper/msrv-1.82
61c9c94 ci: only run full miri in the merge queue
db43f19 Release 2.12.0
b46a32a Move more to the lints table
4849b16 Make use of RFC2145 type privacy for sealed traits
cfff4b7 Use bounds in associated type position
c7178d7 Use core::error::Error
76b459b Use more precise capturing for some impl Trait
b3d9cc3 Use the primitive slice's is_sorted methods
09db3cc Use inherent usize::div_ceil
- 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 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 serde from 1.0.219 to 1.0.228
Release notes
Sourced from serde's releases.
v1.0.228
- Allow building documentation with
RUSTDOCFLAGS='--cfg=docsrs' set for the whole dependency graph (#2995)
v1.0.227
- Documentation improvements (#2991)
v1.0.226
- Deduplicate variant matching logic inside generated Deserialize impl for adjacently tagged enums (#2935, thanks
@Mingun)
v1.0.225
- Avoid triggering a deprecation warning in derived Serialize and Deserialize impls for a data structure that contains its own deprecations (#2879, thanks
@rcrisanti)
v1.0.224
- Remove private types being suggested in rustc diagnostics (#2979)
v1.0.223
- Fix serde_core documentation links (#2978)
v1.0.222
- Make
serialize_with attribute produce code that works if respanned to 2024 edition (#2950, thanks @aytey)
v1.0.221
- Documentation improvements (#2973)
- Deprecate
serde_if_integer128! macro (#2975)
v1.0.220
Commits
a866b33 Release 1.0.228
5adc9e8 Merge pull request #2995 from dtolnay/rustdocflags
ab58178 Workaround for RUSTDOCFLAGS='--cfg=docsrs'
415d9fc Release 1.0.227
7c58427 Merge pull request #2991 from dtolnay/inlinecoredoc
9d3410e Merge pull request #2992 from dtolnay/inplaceseed
2fb6748 Remove InPlaceSeed public re-export
f8137c7 Inline serde_core into serde in docsrs mode
b7dbf7e Merge pull request #2990 from dtolnay/integer128
7c83691 No longer macro_use integer128 module
- Additional commits viewable in compare view
Updates syntect from 5.2.0 to 5.3.0
Release notes
Sourced from syntect's releases.
v5.3.0
Improvements
- Add
HighlightLines::from_state() constructor #569
Fixes
- Ignore UTF-8 BOM on syntax detection #530
- Escape CSS class names #539
- Avoid an infinite loop when a syntax definition continually pushes contexts without consuming any input #597
- Return an error when a syntax definition contains an unescaped trailing backslash instead of panicking at runtime #548
Dependencies
- Replace
bitflags with a manual implementation #590
- Update
public-api to work with new lockfile versions #591
- Update
thiserror to v2 #594
- Update
fancy-regex to 0.16.2 #596
- Bump
rust_onig version to avoid build failures on newer GCC versions #584
Docs
- Add various projects to the README showcase:
- Deprecate
syntect::parsing::SCOPE_REPO for removal #580
Other
- Format with
rustfmt #528
- Bump nightly toolchain version to fix a test build failure #542
- Remove unused import in yaml load test #531
- Use
BufWriter to improve unoptimized serialization perf #554
- Commit
Cargo.lock to avoid flaky CI issues #567
- Switch from
expect-test to insta #568 then later to public-api's snapshot-testing support #595
- Speed up unittest runtime #577 #598
- Fix new clippy lints #585
- Use
cargo-hack to check many different features in CI #593
Changelog
Sourced from syntect's changelog.
Improvements
- Add
HighlightLines::from_state() constructor #569
Fixes
- Ignore UTF-8 BOM on syntax detection #530
- Escape CSS class names #539
- Avoid an infinite loop when a syntax definition continually pushes contexts without consuming any input #597
- Return an error when a syntax definition contains an unescaped trailing backslash instead of panicking at runtime #548
Dependencies
- Replace
bitflags with a manual implementation #590
- Update
public-api to work with new lockfile versions #591
- Update
thiserror to v2 #594
- Update
fancy-regex to 0.16.2 #596
- Bump
rust_onig version to avoid build failures on newer GCC versions #584
Docs
- Add various projects to the README showcase:
- Deprecate
syntect::parsing::SCOPE_REPO for removal #580
Other
- Format with
rustfmt #528
- Bump nightly toolchain version to fix a test build failure #542
- Remove unused import in yaml load test #531
- Use
BufWriter to improve unoptimized serialization perf #554
- Commit
Cargo.lock to avoid flaky CI issues #567
- Switch from
expect-test to insta #568 then later to public-api's snapshot-testing support #595
- Speed up unittest runtime #577 #598
- Fix new clippy lints #585
- Use
cargo-hack to check many different features in CI #593
#528: trishume/syntect#528
#530: trishume/syntect#530
#531: trishume/syntect#531
#533: trishume/syntect#533
#534: trishume/syntect#534
... (truncated)
Commits
e467084 Update lock file for 5.3.0 release
f1ed46c Release 5.3.0
d683f91 Merge pull request #601 from CosmicHorrorDev/prep-5.3.0
ca7de0f Revert "Replace yaml-rust dependency with yaml-rust2"
095a21f docs: Update installation docs to use cargo add
dd1b700 docs: Update the changelog for the 5.3.0 release
c0472fb Merge pull request #596 from CosmicHorrorDev/update-fancy-regex
f56d2b0 deps: Update fancy-regex to v0.16.2
a85dde9 Merge pull request #600 from praseodym/yaml-rust2
498099e Replace yaml-rust dependency with yaml-rust2
- Additional commits viewable in compare view
Updates tempfile from 3.15.0 to 3.23.0
Changelog
Sourced from tempfile's changelog.
3.23.0
- Remove need for the "nightly" feature to compile with "wasip2".
3.22.0
- Updated
windows-sys requirement to allow version 0.61.x
- Remove
unstable-windows-keep-open-tempfile feature.
3.21.0
- Updated
windows-sys requirement to allow version 0.60.x
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.
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...
... (truncated)
Commits
fe9f4a3 chore: release v3.23.0 (#381)
006c3fd fix: use std::os::fd instead of std::os::wasi (#380)
b0e6309 doc: Update COPYRIGHT link (#377)
2d6fc3f Fix formatting in Builder::disable_cleanup documentation (#375)
f720dbe chore: release 3.22.0
55d742c chore: remove deprecated unstable feature flag
bc41a0b build(deps): update windows-sys requirement from >=0.52, <0.61 to >=0.52, <0....
3c55387 test: make sure we don't drop tempdirs early (#373)
17bf644 doc(builder): clarify permissions (#372)
c7423f1 doc(env): document the alternative to setting the tempdir (#371)
- Additional commits viewable in compare view
Updates rayon from 1.10.0 to 1.11.0
Changelog
Sourced from rayon'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.
Commits
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase will rebase this PR
@dependabot recreate will recreate this PR, overwriting any edits that have been made to it
@dependabot merge will merge this PR after your CI passes on it
@dependabot squash and merge will squash and merge this PR after your CI passes on it
@dependabot cancel merge will cancel a previously requested merge and block automerging
@dependabot reopen will reopen this PR if it is closed
@dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
@dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
@dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
@dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
@dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
@dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
@dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions
Uh oh!
There was an error while loading. Please reload this page.
Bumps the cargo-minor group with 8 updates in the / directory:
2.9.12.10.02.0.12.1.02.9.02.12.08.0.08.2.01.12.11.13.05.2.05.3.03.15.03.23.01.10.01.11.0Updates
bitflagsfrom 2.9.1 to 2.10.0Release notes
Sourced from bitflags's releases.
Changelog
Sourced from bitflags's changelog.
Commits
7cc8595Merge pull request #468 from bitflags/cargo/2.10.0ea9b2f7prepare for 2.10.0 release7fdc68cMerge pull request #467 from KodrAus/feat/serde_corefdc1d4adepend on serde_core instead of serde7922585Merge pull request #466 from KodrAus/chore/iter-named-tests409666erename iter_named to iter_defined_names50fab91Merge pull request #465 from ssrlive/mainf886489Fix bitflags_custom_bits.stderr & bitflags_trait_custom.stderr39bd761rename all_named_flags to iter_named3e52578Implement iterator for all named flagsUpdates
bytesizefrom 2.0.1 to 2.1.0Release notes
Sourced from bytesize's releases.
Changelog
Sourced from bytesize's changelog.
Commits
ac756bbchore(bytesize): prepare release 2.1.03a0de52chore: migrate to serde_coree816797feat: add exabyte and exbibyte support (#101)3b89d01chore(deps): bump actions/checkout from 4 to 5 (#105)62e38cbchore(deps): bump actions-rust-lang/setup-rust-toolchain (#104)4beb271chore(deps): bump codecov/codecov-action from 5.4.3 to 5.5.0 (#106)731c44cchore(deps): bump taiki-e/install-action from 2.57.8 to 2.58.29 (#107)6613704chore(deps): bump arbitrary from 1.4.1 to 1.4.2 (#108)1463664chore(deps): bump serde_json from 1.0.142 to 1.0.143 (#109)8476c8afix(ci): use variables directly in formatting for clippy (#103)Updates
indexmapfrom 2.9.0 to 2.12.0Changelog
Sourced from indexmap's changelog.
Commits
0e68f8aMerge pull request #422 from cuviper/msrv-1.8261c9c94ci: only run full miri in the merge queuedb43f19Release 2.12.0b46a32aMove more to the lints table4849b16Make use of RFC2145 type privacy for sealed traitscfff4b7Use bounds in associated type positionc7178d7Usecore::error::Error76b459bUse more precise capturing for someimpl Traitb3d9cc3Use the primitive slice'sis_sortedmethods09db3ccUse inherentusize::div_ceilUpdates
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
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
serdefrom 1.0.219 to 1.0.228Release notes
Sourced from serde's releases.
Commits
a866b33Release 1.0.2285adc9e8Merge pull request #2995 from dtolnay/rustdocflagsab58178Workaround for RUSTDOCFLAGS='--cfg=docsrs'415d9fcRelease 1.0.2277c58427Merge pull request #2991 from dtolnay/inlinecoredoc9d3410eMerge pull request #2992 from dtolnay/inplaceseed2fb6748Remove InPlaceSeed public re-exportf8137c7Inline serde_core into serde in docsrs modeb7dbf7eMerge pull request #2990 from dtolnay/integer1287c83691No longer macro_use integer128 moduleUpdates
syntectfrom 5.2.0 to 5.3.0Release notes
Sourced from syntect's releases.
Changelog
Sourced from syntect's changelog.
... (truncated)
Commits
e467084Update lock file for 5.3.0 releasef1ed46cRelease 5.3.0d683f91Merge pull request #601 from CosmicHorrorDev/prep-5.3.0ca7de0fRevert "Replaceyaml-rustdependency withyaml-rust2"095a21fdocs: Update installation docs to usecargo adddd1b700docs: Update the changelog for the 5.3.0 releasec0472fbMerge pull request #596 from CosmicHorrorDev/update-fancy-regexf56d2b0deps: Update fancy-regex to v0.16.2a85dde9Merge pull request #600 from praseodym/yaml-rust2498099eReplaceyaml-rustdependency withyaml-rust2Updates
tempfilefrom 3.15.0 to 3.23.0Changelog
Sourced from tempfile's changelog.
... (truncated)
Commits
fe9f4a3chore: release v3.23.0 (#381)006c3fdfix: use std::os::fd instead of std::os::wasi (#380)b0e6309doc: Update COPYRIGHT link (#377)2d6fc3fFix formatting in Builder::disable_cleanup documentation (#375)f720dbechore: release 3.22.055d742cchore: remove deprecated unstable feature flagbc41a0bbuild(deps): update windows-sys requirement from >=0.52, <0.61 to >=0.52, <0....3c55387test: make sure we don't drop tempdirs early (#373)17bf644doc(builder): clarify permissions (#372)c7423f1doc(env): document the alternative to setting the tempdir (#371)Updates
rayonfrom 1.10.0 to 1.11.0Changelog
Sourced from rayon's changelog.
Commits
6236214Merge #1031652f111Release rayon 1.7.0 and rayon-core 1.11.07df001dTweak plumbing consumer description322dfe8Merge #1026099241dMerge #1030a17bcb9Fix inappropriate use of slice::as_mut_ptr98077feBe more cautious about drain drops7069695Merge #1028874ff73Fix docs for the yieldNonecase onThreadPool58f7b7eBe careful comparingjob_ref.execute_fnDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions