dependabot[bot] opened a new pull request, #10184:
URL: https://github.com/apache/arrow-rs/pull/10184

   Bumps [atoi](https://github.com/pacman82/atoi-rs) from 2.0.0 to 3.0.0.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/pacman82/atoi-rs/releases";>atoi's 
releases</a>.</em></p>
   <blockquote>
   <h2>v3.0.0</h2>
   <h3>🚀 Features</h3>
   <ul>
   <li>
   <p>[<strong>breaking</strong>] Minimal supported rust compiler now 1.86.0</p>
   </li>
   <li>
   <p>[<strong>breaking</strong>] Remove ascii_to_digit</p>
   </li>
   <li>
   <p>[<strong>breaking</strong>] Remove trait MaxNumDigits</p>
   </li>
   <li>
   <p>[<strong>breaking</strong>] Remove enumeration <code>Sign</code></p>
   <p>It is now an implementation detail of integer</p>
   </li>
   </ul>
   <h3>🚜 Refactor</h3>
   <ul>
   <li>[<strong>breaking</strong>] <code>FromRadix10</code> and its sibling 
traits used to be implement for any type with a neutral element of addition 
<code>Zero</code>, its successor <code>One</code>, <code>AddAssign</code> and 
<code>MulAssign</code>. This allowed it to work not only for builtin types like 
<code>i32</code>, but also for big integer implementations from other crates. 
However, it made it also hard to optimize for builtin types. 
<code>FromRadix10</code> and its sibling traits <code>FromRadix10Signed</code>, 
<code>FromRadixSignedChecked</code>, <code>FromRadix16</code> are now 
explicitly implemented for builtin types. The generic implementation can still 
be used by wrapping the type in the new <code>Integer</code> wrapper.</li>
   </ul>
   <h3>⚡ Performance</h3>
   <ul>
   <li>
   <p>Inline from_radix_* functions for builtin types</p>
   <p>Since these are no longer generic, we do not get the inlining for free.
   Benchmarks show significant regressions otherwise</p>
   </li>
   <li>
   <p>Speed up hexdigit parsing by using masks to unify ascii cases</p>
   <p>Thanks to okaneco for the idea</p>
   </li>
   </ul>
   <h3>⚙️ Miscellaneous Tasks</h3>
   <ul>
   <li>[<strong>breaking</strong>] Minimal toolchain is now 1.86.0</li>
   <li>[<strong>breaking</strong>] Remove <code>Sign</code> from public 
interface</li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/pacman82/atoi-rs/blob/main/CHANGELOG.md";>atoi's 
changelog</a>.</em></p>
   <blockquote>
   <h2><a 
href="https://github.com/pacman82/odbc-api/compare/2.0.0...3.0.0";>3.0.0</a> - 
2026-06-04</h2>
   <h3>🚀 Features</h3>
   <ul>
   <li>
   <p>[<strong>breaking</strong>] Minimal supported rust compiler now 1.86.0</p>
   </li>
   <li>
   <p>[<strong>breaking</strong>] Remove ascii_to_digit</p>
   </li>
   <li>
   <p>[<strong>breaking</strong>] Remove trait MaxNumDigits</p>
   </li>
   <li>
   <p>[<strong>breaking</strong>] Remove enumeration <code>Sign</code></p>
   <p>It is now an implementation detail of integer</p>
   </li>
   </ul>
   <h3>🚜 Refactor</h3>
   <ul>
   <li>[<strong>breaking</strong>] <code>FromRadix10</code> and its sibling 
traits used to be implement for any type with a neutral element of addition 
<code>Zero</code>, its successor <code>One</code>, <code>AddAssign</code> and 
<code>MulAssign</code>. This allowed it to work not only for builtin types like 
<code>i32</code>, but also for big integer implementations from other crates. 
However, it made it also hard to optimize for builtin types. 
<code>FromRadix10</code> and its sibling traits <code>FromRadix10Signed</code>, 
<code>FromRadixSignedChecked</code>, <code>FromRadix16</code> are now 
explicitly implemented for builtin types. The generic implementation can still 
be used by wrapping the type in the new <code>Integer</code> wrapper.</li>
   </ul>
   <h3>⚡ Performance</h3>
   <ul>
   <li>
   <p>Inline from_radix_* functions for builtin types</p>
   <p>Since these are no longer generic, we do not get the inlining for free.
   Benchmarks show significant regressions otherwise</p>
   </li>
   <li>
   <p>Speed up hexdigit parsing by using masks to unify ascii cases</p>
   <p>Thanks to okaneco for the idea</p>
   </li>
   </ul>
   <h3>⚙️ Miscellaneous Tasks</h3>
   <ul>
   <li>[<strong>breaking</strong>] Minimal toolchain is now 1.86.0</li>
   <li>[<strong>breaking</strong>] Remove <code>Sign</code> from public 
interface</li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/pacman82/atoi-rs/commit/f21361447fdde2073aa785dd7d8b116aa847bd59";><code>f213614</code></a>
 chore: Update changelog</li>
   <li><a 
href="https://github.com/pacman82/atoi-rs/commit/de5b1b3b579d791f9f956f6e9d9be06281051115";><code>de5b1b3</code></a>
 chore: release v3.0.0</li>
   <li><a 
href="https://github.com/pacman82/atoi-rs/commit/01f146b1c3729f2459a2a08e4c724d59aaef4187";><code>01f146b</code></a>
 chore: Fix do not use private symbols in doctests</li>
   <li><a 
href="https://github.com/pacman82/atoi-rs/commit/82ea316df6deb7deff3f098535bbce19c60cac57";><code>82ea316</code></a>
 feat!: Remove ascii_to_digit</li>
   <li><a 
href="https://github.com/pacman82/atoi-rs/commit/b2b8399de0c643334b92a3dd3cd3d19693e995c2";><code>b2b8399</code></a>
 chore!: Minimal toolchain is now 1.86.0</li>
   <li><a 
href="https://github.com/pacman82/atoi-rs/commit/de03c7b82633e095d7339c35470ecdf43670d5c3";><code>de03c7b</code></a>
 test: Extra benchmark with more digits</li>
   <li><a 
href="https://github.com/pacman82/atoi-rs/commit/9cebc587a69dd0d82dfa92013a5a3cd3ba2db7ee";><code>9cebc58</code></a>
 test: additional tests for empty strings and ones only containing signs</li>
   <li><a 
href="https://github.com/pacman82/atoi-rs/commit/8a14e35ea06cdb268add5933c4b143cccd4f9129";><code>8a14e35</code></a>
 chore!: Remove <code>Sign</code> from public interface</li>
   <li><a 
href="https://github.com/pacman82/atoi-rs/commit/f4ac76868b56f77de8fb6c0d69d8c0a03ea433ce";><code>f4ac768</code></a>
 Bump actions/checkout from 6.0.2 to 6.0.3</li>
   <li><a 
href="https://github.com/pacman82/atoi-rs/commit/f6ea61bca0e8870c69bce761e5bc86c252cb0491";><code>f6ea61b</code></a>
 refactor: FromDigit for builtin types now uses substraction</li>
   <li>Additional commits viewable in <a 
href="https://github.com/pacman82/atoi-rs/compare/v2.0.0...v3.0.0";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=atoi&package-manager=cargo&previous-version=2.0.0&new-version=3.0.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   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-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   <details>
   <summary>Dependabot commands and options</summary>
   <br />
   
   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 show <dependency name> ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   </details>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to