Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Bumps the rust-dependencies group with 5 updates:

Package From To
bumpalo 3.19.0 3.19.1
cc 1.2.49 1.2.50
itoa 1.0.15 1.0.16
portable-atomic 1.11.1 1.12.0
ryu 1.0.20 1.0.21

Updates bumpalo from 3.19.0 to 3.19.1

Changelog

Sourced from bumpalo's changelog.

3.19.1

Released 2025-12-16.

Changed

  • Annotated bumpalo::collections::String::from_str_in as #[inline].

Fixed

  • Fixed compilation failures with the latest nightly Rust when enabling the unstable allocator_api feature.

Commits

Updates cc from 1.2.49 to 1.2.50

Release notes

Sourced from cc's releases.

cc-v1.2.50

Other

  • Add tests for OUT_DIR escape for '..' file paths (#1631)
  • Fix #283: Make warnings(false) actually suppress compiler warnings (#1633)
Changelog

Sourced from cc's changelog.

1.2.50 - 2025-12-19

Other

  • Add tests for OUT_DIR escape for '..' file paths (#1631)
  • Fix #283: Make warnings(false) actually suppress compiler warnings (#1633)
Commits

Updates itoa from 1.0.15 to 1.0.16

Release notes

Sourced from itoa's releases.

1.0.16

  • Synchronize algorithm improvements from libcore (#65)
Commits
  • 4c18677 Release 1.0.16
  • 2e6134d Exclude benchmark dependencies from being compiled by miri
  • 2c7311b Merge pull request #65 from dtolnay/up
  • bb76a9c Update libcore implementation links
  • 83539d1 Ignore cast_lossless pedantic clippy lint
  • 4394758 Update benchmark chart
  • 997a4ef Write last digit without table lookup
  • bae1746 Copy fast divmod100 from zmij
  • 1087e9d Remove DECIMAL_PAIRS bounds checks
  • 200d064 Delete unreachable_unchecked hints
  • Additional commits viewable in compare view

Updates portable-atomic from 1.11.1 to 1.12.0

Changelog

Sourced from portable-atomic's changelog.

[1.12.0] - 2025-12-19

  • Fix build error on no-std pre-v6 Arm targets due to the recent upstream change. (83f6f3e)

  • Support unsafe-assume-single-core feature / portable_atomic_unsafe_assume_single_core cfg for targets with CAS. (38e9572)

  • Improve compile-time detection of s390x target feature. (5ae0ef5)

  • Documentation improvements. (c84f720)

Commits
  • b5efed0 Release portable-atomic 1.12.0
  • 4a02e1d Update comments
  • 9ac4c17 Update changelog
  • 61053bf ci: Temporarily disable thumbv5te test
  • c84f720 Update docs
  • 38e9572 Support assume-single-core for targets with CAS
  • ec16910 ci: Test macos-15-intel
  • bbe14f7 Disable doc(auto_cfg)
  • 8e955db ci: Ignore linker_messages on aarch64-pc-windows-msvc
  • 1f34ae1 ci: Test riscv64im-unknown-none-elf
  • Additional commits viewable in compare view

Updates ryu from 1.0.20 to 1.0.21

Release notes

Sourced from ryu's releases.

1.0.21

  • Documentation improvements
Commits
  • aaa2f8d Release 1.0.21
  • 03f8148 Remove supported compiler version statement from readme
  • b9121ee Update actions/upload-artifact@v5 -> v6
  • 56ac8ca Update actions/upload-artifact@v4 -> v5
  • 23a8290 Raise minimum tested compiler to rust 1.86
  • 7d5e43a Switch from cargo bench to criterion
  • e537df3 Benchmark using e from consts module
  • 6199a2b Switch from test::black_box to std::hint::black_box
  • 221e3d4 Resolve uninlined_format_args pedantic clippy lint
  • c667b72 Update to 2021 edition
  • 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 rust-dependencies group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [bumpalo](https://github.com/fitzgen/bumpalo) | `3.19.0` | `3.19.1` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.2.49` | `1.2.50` |
| [itoa](https://github.com/dtolnay/itoa) | `1.0.15` | `1.0.16` |
| [portable-atomic](https://github.com/taiki-e/portable-atomic) | `1.11.1` | `1.12.0` |
| [ryu](https://github.com/dtolnay/ryu) | `1.0.20` | `1.0.21` |


Updates `bumpalo` from 3.19.0 to 3.19.1
- [Changelog](https://github.com/fitzgen/bumpalo/blob/main/CHANGELOG.md)
- [Commits](fitzgen/bumpalo@v3.19.0...v3.19.1)

Updates `cc` from 1.2.49 to 1.2.50
- [Release notes](https://github.com/rust-lang/cc-rs/releases)
- [Changelog](https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/cc-rs@cc-v1.2.49...cc-v1.2.50)

Updates `itoa` from 1.0.15 to 1.0.16
- [Release notes](https://github.com/dtolnay/itoa/releases)
- [Commits](dtolnay/itoa@1.0.15...1.0.16)

Updates `portable-atomic` from 1.11.1 to 1.12.0
- [Release notes](https://github.com/taiki-e/portable-atomic/releases)
- [Changelog](https://github.com/taiki-e/portable-atomic/blob/main/CHANGELOG.md)
- [Commits](taiki-e/portable-atomic@v1.11.1...v1.12.0)

Updates `ryu` from 1.0.20 to 1.0.21
- [Release notes](https://github.com/dtolnay/ryu/releases)
- [Commits](dtolnay/ryu@1.0.20...1.0.21)

---
updated-dependencies:
- dependency-name: bumpalo
  dependency-version: 3.19.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: cc
  dependency-version: 1.2.50
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: itoa
  dependency-version: 1.0.16
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: portable-atomic
  dependency-version: 1.12.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: ryu
  dependency-version: 1.0.21
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Dec 22, 2025
@dependabot dependabot bot requested a review from a team as a code owner December 22, 2025 04:24
@dependabot dependabot bot added the rust Pull requests that update rust code label Dec 22, 2025
@dependabot dependabot bot requested a review from abr-egn December 22, 2025 04:24
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.

1 participant