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

   Updates the requirements on 
[twox-hash](https://github.com/shepmaster/twox-hash) to permit the latest 
version.
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/shepmaster/twox-hash/blob/main/CHANGELOG.md";>twox-hash's
 changelog</a>.</em></p>
   <blockquote>
   <h2><a href="https://github.com/shepmaster/twox-hash/tree/v2.0.0";>2.0.0</a> 
- 2024-10-18</h2>
   <p>This release is a complete rewrite of the crate, including
   reorganization of the code. The XXH3 algorithm now matches the 0.8
   release of the reference C xxHash implementation.</p>
   <h3>Added</h3>
   <ul>
   <li>
   <p><code>XxHash32::oneshot</code> and <code>XxHash64::oneshot</code> can 
perform hashing with
   zero allocation and generally improved performance. If you have code
   that creates a hasher and hashes a slice of bytes exactly once, you
   are strongly encouraged to use the new functions. This might look
   like:</p>
   <pre lang="rust"><code>// Before
   let mut hasher = XxHash64::new(); // or XxHash32, or with seeds
   some_bytes.hash(&amp;mut hasher);
   let hash = hasher.finish();
   <p>// After<br />
   let hash = XxHash64::oneshot(some_bytes);<br />
   </code></pre></p>
   </li>
   <li>
   <p>There is a feature flag for each hashing implementation. It is
   recommended that you opt-out of the crate's default features and
   only select the implementations you need to improve compile speed.</p>
   </li>
   </ul>
   <h3>Changed</h3>
   <ul>
   <li>
   <p>The crates minimum supported Rust version (MSRV) is now 1.81.</p>
   </li>
   <li>
   <p>Functional and performance comparisons are made against the
   reference C xxHash library version 0.8.2, which includes a stable
   XXH3 algorithm.</p>
   </li>
   <li>
   <p>Support for randomly-generated hasher instances is now behind the
   <code>random</code> feature flag. It was previously combined with the 
<code>std</code>
   feature flag.</p>
   </li>
   </ul>
   <h3>Removed</h3>
   <ul>
   <li>
   <p>The deprecated type aliases <code>XxHash</code> and 
<code>RandomXxHashBuilder</code> have
   been removed. Replace them with <code>XxHash64</code> and
   <code>xxhash64::RandomState</code> respectively.</p>
   </li>
   <li>
   <p><code>RandomXxHashBuilder32</code> and <code>RandomXxHashBuilder64</code> 
are no longer
   available at the top-level of the crate. Replace them with</p>
   </li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/shepmaster/twox-hash/commit/3d925b43e454acecfe54b5949f86afb286859761";><code>3d925b4</code></a>
 Release version 2.0.0</li>
   <li><a 
href="https://github.com/shepmaster/twox-hash/commit/872959e2126cd93f68b91661f9a57bdcebe25b4c";><code>872959e</code></a>
 Merge pull request <a 
href="https://redirect.github.com/shepmaster/twox-hash/issues/101";>#101</a> 
from shepmaster/v2</li>
   <li><a 
href="https://github.com/shepmaster/twox-hash/commit/6d4ffd4e846325ed3e51a05524747616a2d251e8";><code>6d4ffd4</code></a>
 Remove vestigial comment</li>
   <li><a 
href="https://github.com/shepmaster/twox-hash/commit/979e71b5f94d1fe01e62b3b70084993eed0fc9b6";><code>979e71b</code></a>
 Update benchmarks for Rust 1.81 / xxHash 0.8.2</li>
   <li><a 
href="https://github.com/shepmaster/twox-hash/commit/a635afe6fc4b1e4464940c5805b52bce48cb2e9d";><code>a635afe</code></a>
 Tweaks to get benchmarking running again after renaming</li>
   <li><a 
href="https://github.com/shepmaster/twox-hash/commit/5ce7f4b071a7ad45dd1314320b6afbfe04302db9";><code>5ce7f4b</code></a>
 Introduce a changelog</li>
   <li><a 
href="https://github.com/shepmaster/twox-hash/commit/9bd194326fa76a9cd5f2ec8d48526c88640428fb";><code>9bd1943</code></a>
 Don't create empty ranges in proptests</li>
   <li><a 
href="https://github.com/shepmaster/twox-hash/commit/4c577a33d4957e79d6f5d9db38652562251edcc6";><code>4c577a3</code></a>
 Test for minimal dependency versions</li>
   <li><a 
href="https://github.com/shepmaster/twox-hash/commit/45f21b028f88801af5af9b198f0c14108e784300";><code>45f21b0</code></a>
 Document the feature flags</li>
   <li><a 
href="https://github.com/shepmaster/twox-hash/commit/28f0d836b78a00b1e1804d45c5cb9d5d1300267a";><code>28f0d83</code></a>
 Unify the README and crate documentation</li>
   <li>Additional commits viewable in <a 
href="https://github.com/shepmaster/twox-hash/compare/v1.6.0...v2.0.0";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   
   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 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 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