Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 22, 2025

Bumps the cargo-minor group with 8 updates in the / directory:

Package From To
bitflags 2.9.1 2.10.0
bytesize 2.0.1 2.1.0
indexmap 2.9.0 2.12.0
notify 8.0.0 8.2.0
rayon-core 1.12.1 1.13.0
syntect 5.2.0 5.3.0
tempfile 3.15.0 3.23.0
rayon 1.10.0 1.11.0

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.

Version 5.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

#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

@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Oct 22, 2025
Bumps the cargo-minor group with 8 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [bitflags](https://github.com/bitflags/bitflags) | `2.9.1` | `2.10.0` |
| [bytesize](https://github.com/bytesize-rs/bytesize) | `2.0.1` | `2.1.0` |
| [indexmap](https://github.com/indexmap-rs/indexmap) | `2.9.0` | `2.12.0` |
| [notify](https://github.com/notify-rs/notify) | `8.0.0` | `8.2.0` |
| [rayon-core](https://github.com/rayon-rs/rayon) | `1.12.1` | `1.13.0` |
| [syntect](https://github.com/trishume/syntect) | `5.2.0` | `5.3.0` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.15.0` | `3.23.0` |
| [rayon](https://github.com/rayon-rs/rayon) | `1.10.0` | `1.11.0` |



Updates `bitflags` from 2.9.1 to 2.10.0
- [Release notes](https://github.com/bitflags/bitflags/releases)
- [Changelog](https://github.com/bitflags/bitflags/blob/main/CHANGELOG.md)
- [Commits](bitflags/bitflags@2.9.1...2.10.0)

Updates `bytesize` from 2.0.1 to 2.1.0
- [Release notes](https://github.com/bytesize-rs/bytesize/releases)
- [Changelog](https://github.com/bytesize-rs/bytesize/blob/master/CHANGELOG.md)
- [Commits](bytesize-rs/bytesize@bytesize-v2.0.1...bytesize-v2.1.0)

Updates `indexmap` from 2.9.0 to 2.12.0
- [Changelog](https://github.com/indexmap-rs/indexmap/blob/main/RELEASES.md)
- [Commits](indexmap-rs/indexmap@2.9.0...2.12.0)

Updates `notify` from 8.0.0 to 8.2.0
- [Release notes](https://github.com/notify-rs/notify/releases)
- [Changelog](https://github.com/notify-rs/notify/blob/main/CHANGELOG.md)
- [Commits](notify-rs/notify@notify-8.0.0...notify-8.2.0)

Updates `rayon-core` from 1.12.1 to 1.13.0
- [Changelog](https://github.com/rayon-rs/rayon/blob/main/RELEASES.md)
- [Commits](rayon-rs/rayon@rayon-core-v1.12.1...rayon-core-v1.13.0)

Updates `serde` from 1.0.219 to 1.0.228
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.219...v1.0.228)

Updates `syntect` from 5.2.0 to 5.3.0
- [Release notes](https://github.com/trishume/syntect/releases)
- [Changelog](https://github.com/trishume/syntect/blob/master/CHANGELOG.md)
- [Commits](trishume/syntect@v5.2.0...v5.3.0)

Updates `tempfile` from 3.15.0 to 3.23.0
- [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md)
- [Commits](Stebalien/tempfile@v3.15.0...v3.23.0)

Updates `rayon` from 1.10.0 to 1.11.0
- [Changelog](https://github.com/rayon-rs/rayon/blob/main/RELEASES.md)
- [Commits](rayon-rs/rayon@rayon-core-v1.10.0...rayon-core-v1.11.0)

---
updated-dependencies:
- dependency-name: bitflags
  dependency-version: 2.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-minor
- dependency-name: bytesize
  dependency-version: 2.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-minor
- dependency-name: indexmap
  dependency-version: 2.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-minor
- dependency-name: notify
  dependency-version: 8.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-minor
- dependency-name: rayon-core
  dependency-version: 1.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-minor
- dependency-name: serde
  dependency-version: 1.0.228
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
- dependency-name: syntect
  dependency-version: 5.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-minor
- dependency-name: tempfile
  dependency-version: 3.23.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-minor
- dependency-name: rayon
  dependency-version: 1.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/cargo/cargo-minor-7b329c53d4 branch from 02b22fc to 8399893 Compare October 23, 2025 02:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file rust Pull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants