Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 1, 2026

Bumps the all group in /local-registry with 5 updates:

Package From To
bigdecimal 0.4.9 0.4.10
criterion 0.8.0 0.8.1
derive_more 2.1.0 2.1.1
itoa 1.0.15 1.0.17
unzip-n 0.1.2 0.1.4

Updates bigdecimal from 0.4.9 to 0.4.10

Release notes

Sourced from bigdecimal's releases.

v0.4.10

Changes

  • Add comparison operators between BigDecimal and primitive integers
  • Improve accuracy of initial iteration in square-root calculation
  • Only include necessary Rust files in the released package (no extra dev-scripts when downloading)
Commits
  • ea0803e v0.4.10
  • a53d3af Version 0.4.10
  • 6d8fd83 Enforce decimal precision in sqrt tests
  • c1f8f91 Move sqrt tests into sqrt.tests.rs
  • 95dff41 Add methods for constructing DigitVec from u128
  • 9bf2efc Correct index at which we add carry
  • df4cb29 Merge primitive-int comparison branch into trunk
  • 105eb60 Update doc-comments in bigdigit/alignment
  • 0571732 Update all parsing in tests to explicit BigDecimal type
  • ed1f8a9 Implement comparison with primitive integers
  • Additional commits viewable in compare view

Updates criterion from 0.8.0 to 0.8.1

Release notes

Sourced from criterion's releases.

criterion-plot-v0.8.1

Fixed

  • Typo

criterion-v0.8.1

Fixed

  • Homepage link

Other

  • (deps) bump crate-ci/typos from 1.23.5 to 1.40.0
  • (deps) bump jontze/action-mdbook from 3 to 4
  • (deps) bump actions/checkout from 4 to 6
Changelog

Sourced from criterion's changelog.

0.8.1 - 2025-12-07

Fixed

  • Homepage link

Other

  • (deps) bump crate-ci/typos from 1.23.5 to 1.40.0
  • (deps) bump jontze/action-mdbook from 3 to 4
  • (deps) bump actions/checkout from 4 to 6
Commits
  • e4e06df chore: release v0.8.1
  • aa548b9 fix: Homepage link
  • 950c3b7 fix: Typo
  • 7e3e50c chore(deps): bump crate-ci/typos from 1.23.5 to 1.40.0
  • 391a99a chore(deps): bump jontze/action-mdbook from 3 to 4
  • 8fb9a87 chore(deps): bump actions/checkout from 4 to 6
  • See full diff in compare view

Updates derive_more from 2.1.0 to 2.1.1

Release notes

Sourced from derive_more's releases.

2.1.1

API docs Changelog

Changelog

Sourced from derive_more's changelog.

2.1.1 - 2025-12-22

Fixed

  • .as_dyn_error() method hygiene inside Error derive expansion. (#527)
Commits

Updates itoa from 1.0.15 to 1.0.17

Release notes

Sourced from itoa's releases.

1.0.16

  • Synchronize algorithm improvements from libcore (#65)
Commits
  • 21d6109 Release 1.0.17
  • 55c15a1 Use performance chart from itoa-benchmark
  • cf33343 Update ryu links to zmij
  • 2dff249 Set repr(C) on DECIMAL_PAIRS
  • 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
  • Additional commits viewable in compare view

Updates unzip-n from 0.1.2 to 0.1.4

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

Bumps the all group in /local-registry with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [bigdecimal](https://github.com/akubera/bigdecimal-rs) | `0.4.9` | `0.4.10` |
| [criterion](https://github.com/criterion-rs/criterion.rs) | `0.8.0` | `0.8.1` |
| [derive_more](https://github.com/JelteF/derive_more) | `2.1.0` | `2.1.1` |
| [itoa](https://github.com/dtolnay/itoa) | `1.0.15` | `1.0.17` |
| [unzip-n](https://github.com/mexus/unzip-n) | `0.1.2` | `0.1.4` |


Updates `bigdecimal` from 0.4.9 to 0.4.10
- [Release notes](https://github.com/akubera/bigdecimal-rs/releases)
- [Commits](akubera/bigdecimal-rs@v0.4.9...v0.4.10)

Updates `criterion` from 0.8.0 to 0.8.1
- [Release notes](https://github.com/criterion-rs/criterion.rs/releases)
- [Changelog](https://github.com/criterion-rs/criterion.rs/blob/master/CHANGELOG.md)
- [Commits](criterion-rs/criterion.rs@criterion-v0.8.0...criterion-v0.8.1)

Updates `derive_more` from 2.1.0 to 2.1.1
- [Release notes](https://github.com/JelteF/derive_more/releases)
- [Changelog](https://github.com/JelteF/derive_more/blob/master/CHANGELOG.md)
- [Commits](JelteF/derive_more@v2.1.0...v2.1.1)

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

Updates `unzip-n` from 0.1.2 to 0.1.4
- [Commits](https://github.com/mexus/unzip-n/commits)

---
updated-dependencies:
- dependency-name: bigdecimal
  dependency-version: 0.4.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: criterion
  dependency-version: 0.8.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: derive_more
  dependency-version: 2.1.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: itoa
  dependency-version: 1.0.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: unzip-n
  dependency-version: 0.1.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the x:rep/tiny Tiny amount of reputation label Jan 1, 2026
@dependabot dependabot bot requested a review from a team as a code owner January 1, 2026 12:09
@github-actions
Copy link

github-actions bot commented Jan 1, 2026

Hello 👋 Thanks for your PR.

This repo does not currently have dedicated maintainers. Our guardians team will attempt to review and merge your PR, but it will likely take longer for your PR to be reviewed.

If you enjoy contributing to Exercism and have a track-record of doing so successfully, you might like to become an Exercism maintainer for this track.

Please feel free to ask any questions, or chat to us about anything to do with this PR or the reviewing process on the Exercism forum.

(cc @exercism/guardians)

@senekor senekor merged commit 3d5a373 into main Jan 1, 2026
3 checks passed
@senekor senekor deleted the dependabot/cargo/local-registry/all-90d6321c9e branch January 1, 2026 22:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

x:rep/tiny Tiny amount of reputation

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants