Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 18, 2025

Bumps the all-deps group with 4 updates: bitflags, proc-macro2, rayon-core and syn.

Updates bitflags from 2.9.1 to 2.9.2

Release notes

Sourced from bitflags's releases.

2.9.2

What's Changed

Full Changelog: bitflags/bitflags@2.9.1...2.9.2

Changelog

Sourced from bitflags's changelog.

2.9.2

What's Changed

Full Changelog: bitflags/bitflags@2.9.1...2.9.2

Commits
  • 85b5e60 Merge pull request #456 from KodrAus/cargo/2.9.2
  • d185ca5 remove reference to std internal features
  • 82a365f prepare for 2.9.2 release
  • f1beb28 Merge pull request #454 from KodrAus/fix/rustc-dep-of-std
  • ef247c5 update more error messages
  • c8e2354 update compiler errors
  • fe4c49d remove rustc internal crate feature
  • 2b786c9 Merge pull request #453 from bitflags/fix/match-docs
  • 15519b0 fix up inaccurate docs on bitflags_match
  • 80684fd Merge pull request #446 from bitflags/KodrAus-patch-1
  • Additional commits viewable in compare view

Updates proc-macro2 from 1.0.96 to 1.0.101

Release notes

Sourced from proc-macro2's releases.

1.0.101

  • Optimize Span location accessors (#519)

1.0.100

  • Stabilize Span methods on Rust 1.88+: start, end, line, column, file, local_file (#517, #518)

1.0.99

  • Prevent Span's unstable API becoming unavailable from a future new compiler lint (#515)

1.0.98

1.0.97

  • Allow build-script cleanup failure with NFSv3 output directory to be non-fatal (#505, #512, thanks @​davvid)
Commits
  • d3188ea Release 1.0.101
  • cbd1286 Merge pull request #519 from dtolnay/binarysearch
  • fab4cb6 Convert SourceMap scan to binary search
  • f4708a8 Factor out SourceMap linear search to method
  • fdc853a Release 1.0.100
  • 848ed0b Merge pull request #518 from dtolnay/spanfile
  • 76ce1a3 Stabilize Span::file and Span::local_file
  • b5dd3c6 Merge pull request #517 from dtolnay/startend
  • 1d0ffc0 Use Span's start, end, line, column methods on stable 1.88+
  • 4f5845e Merge pull request #516 from dtolnay/probe
  • 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 syn from 2.0.104 to 2.0.106

Release notes

Sourced from syn's releases.

2.0.106

  • Replace ~const syntax with [const] conditionally const syntax in trait bounds (#1896, rust-lang/rust#139858)
  • Support conditionally const impl Trait types (#1897)
  • Reject polarity modifier and lifetime binder used in the same trait bound (#1899, rust-lang/rust#127054)
  • Parse const trait bounds with bound lifetimes (#1902)
  • Parse bound lifetimes with lifetime bounds (#1903)
  • Allow type parameters and const parameters in trait bounds and generic closures (#1904, #1907, #1908, #1909)

2.0.105

Commits
  • 0e4bc64 Release 2.0.106
  • 4fb776a Merge pull request #1910 from dtolnay/traitboundissue
  • 41b24a5 Fix duplicated async trait bound issue
  • a64f024 Merge pull request #1909 from dtolnay/fortype
  • 176099e Parse type parameter introducer on closures
  • b790b39 Merge pull request #1908 from dtolnay/genericvsqpath
  • 9649639 Synchronize generics-vs-qpath heuristic with rust parser
  • 60de331 Merge pull request #1907 from dtolnay/forconst
  • 2aac6d7 Allow const parameters in for<>
  • 11934e5 Merge pull request #1905 from dtolnay/unsafestatic
  • Additional commits viewable in compare view

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

Bumps the all-deps group with 4 updates: [bitflags](https://github.com/bitflags/bitflags), [proc-macro2](https://github.com/dtolnay/proc-macro2), [rayon-core](https://github.com/rayon-rs/rayon) and [syn](https://github.com/dtolnay/syn).


Updates `bitflags` from 2.9.1 to 2.9.2
- [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.9.2)

Updates `proc-macro2` from 1.0.96 to 1.0.101
- [Release notes](https://github.com/dtolnay/proc-macro2/releases)
- [Commits](dtolnay/proc-macro2@1.0.96...1.0.101)

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 `syn` from 2.0.104 to 2.0.106
- [Release notes](https://github.com/dtolnay/syn/releases)
- [Commits](dtolnay/syn@2.0.104...2.0.106)

---
updated-dependencies:
- dependency-name: bitflags
  dependency-version: 2.9.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: proc-macro2
  dependency-version: 1.0.101
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: rayon-core
  dependency-version: 1.13.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-deps
- dependency-name: syn
  dependency-version: 2.0.106
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-deps
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Aug 18, 2025
@newpavlov newpavlov mentioned this pull request Aug 18, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 21, 2025

Looks like these dependencies are no longer updatable, so this is no longer needed.

@dependabot dependabot bot closed this Aug 21, 2025
@dependabot dependabot bot deleted the dependabot/cargo/all-deps-4cafd9d0ba branch August 21, 2025 09:20
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