dependabot[bot] opened a new pull request #1631: URL: https://github.com/apache/arrow-datafusion/pull/1631
Updates the requirements on [hashbrown](https://github.com/rust-lang/hashbrown) to permit the latest version. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md">hashbrown's changelog</a>.</em></p> <blockquote> <h2>[v0.12.0] - 2022-01-17</h2> <h2>Added</h2> <ul> <li>Added <code>From<[T; N]></code> and <code>From<[(K, V); N]></code> for <code>HashSet</code> and <code>HashMap</code> respectively. (<a href="https://github-redirect.dependabot.com/rust-lang/hashbrown/issues/297">#297</a>)</li> <li>Added an <code>allocator()</code> getter to HashMap and HashSet. (<a href="https://github-redirect.dependabot.com/rust-lang/hashbrown/issues/257">#257</a>)</li> <li>Added <code>insert_unique_unchecked</code> to <code>HashMap</code> and <code>HashSet</code>. (<a href="https://github-redirect.dependabot.com/rust-lang/hashbrown/issues/293">#293</a>)</li> <li>Added <code>into_keys</code> and <code>into_values</code> to HashMap. (<a href="https://github-redirect.dependabot.com/rust-lang/hashbrown/issues/295">#295</a>)</li> <li>Implement <code>From<array></code> on <code>HashSet</code> and <code>HashMap</code>. (<a href="https://github-redirect.dependabot.com/rust-lang/hashbrown/issues/298">#298</a>)</li> <li>Added <code>entry_ref</code> API to <code>HashMap</code>. (<a href="https://github-redirect.dependabot.com/rust-lang/hashbrown/issues/201">#201</a>)</li> </ul> <h2>Changed</h2> <ul> <li>Bumped minimum Rust version to 1.56.1 and edition to 2021.</li> <li>Use u64 for the GroupWord on WebAssembly. (<a href="https://github-redirect.dependabot.com/rust-lang/hashbrown/issues/271">#271</a>)</li> <li>Optimized <code>find</code>. (<a href="https://github-redirect.dependabot.com/rust-lang/hashbrown/issues/279">#279</a>)</li> <li>Made rehashing and resizing less generic to reduce compilation time. (<a href="https://github-redirect.dependabot.com/rust-lang/hashbrown/issues/282">#282</a>)</li> <li>Inlined small functions. (<a href="https://github-redirect.dependabot.com/rust-lang/hashbrown/issues/283">#283</a>)</li> <li>Use <code>BuildHasher::hash_one</code> when <code>feature = "nightly"</code> is enabled. (<a href="https://github-redirect.dependabot.com/rust-lang/hashbrown/issues/292">#292</a>)</li> <li>Relaxed the bounds on <code>Debug</code> for <code>HashSet</code>. (<a href="https://github-redirect.dependabot.com/rust-lang/hashbrown/issues/296">#296</a>)</li> <li>Rename <code>get_each_mut</code> to <code>get_many_mut</code> and align API with the stdlib. (<a href="https://github-redirect.dependabot.com/rust-lang/hashbrown/issues/291">#291</a>)</li> <li>Don't hash the key when searching in an empty table. (<a href="https://github-redirect.dependabot.com/rust-lang/hashbrown/issues/305">#305</a>)</li> </ul> <h2>Fixed</h2> <ul> <li>Guard against allocations exceeding isize::MAX. (<a href="https://github-redirect.dependabot.com/rust-lang/hashbrown/issues/268">#268</a>)</li> <li>Made <code>RawTable::insert_no_grow</code> unsafe. (<a href="https://github-redirect.dependabot.com/rust-lang/hashbrown/issues/254">#254</a>)</li> <li>Inline <code>static_empty</code>. (<a href="https://github-redirect.dependabot.com/rust-lang/hashbrown/issues/280">#280</a>)</li> <li>Fixed trait bounds on Send/Sync impls. (<a href="https://github-redirect.dependabot.com/rust-lang/hashbrown/issues/303">#303</a>)</li> </ul> <h2>[v0.11.2] - 2021-03-25</h2> <h2>Fixed</h2> <ul> <li>Added missing allocator type parameter to <code>HashMap</code>'s and <code>HashSet</code>'s <code>Clone</code> impls. (<a href="https://github-redirect.dependabot.com/rust-lang/hashbrown/issues/252">#252</a>)</li> </ul> <h2>[v0.11.1] - 2021-03-20</h2> <h2>Fixed</h2> <ul> <li>Added missing <code>pub</code> modifier to <code>BumpWrapper</code>. (<a href="https://github-redirect.dependabot.com/rust-lang/hashbrown/issues/251">#251</a>)</li> </ul> <h2>[v0.11.0] - 2021-03-14</h2> <h2>Added</h2> <ul> <li>Added safe <code>try_insert_no_grow</code> method to <code>RawTable</code>. (<a href="https://github-redirect.dependabot.com/rust-lang/hashbrown/issues/229">#229</a>)</li> <li>Added support for <code>bumpalo</code> as an allocator without the <code>nightly</code> feature. (<a href="https://github-redirect.dependabot.com/rust-lang/hashbrown/issues/231">#231</a>)</li> <li>Implemented <code>Default</code> for <code>RawTable</code>. (<a href="https://github-redirect.dependabot.com/rust-lang/hashbrown/issues/237">#237</a>)</li> <li>Added new safe methods <code>RawTable::get_each_mut</code>, <code>HashMap::get_each_mut</code>, and <code>HashMap::get_each_key_value_mut</code>. (<a href="https://github-redirect.dependabot.com/rust-lang/hashbrown/issues/239">#239</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rust-lang/hashbrown/commit/f3a242fb48e73df704d27c9722e30ebda5dd8e4f"><code>f3a242f</code></a> Version 0.12.0</li> <li><a href="https://github.com/rust-lang/hashbrown/commit/61d70a16f87644b4efeefbbb7c83cb735fce317e"><code>61d70a1</code></a> Auto merge of <a href="https://github-redirect.dependabot.com/rust-lang/hashbrown/issues/305">#305</a> - nnethercote:add-is_empty-checks, r=Amanieu</li> <li><a href="https://github.com/rust-lang/hashbrown/commit/dec8e8cccbb6e2742b9f551bb9b95d4a8a9d0b63"><code>dec8e8c</code></a> Don't hash the key when searching in an empty table.</li> <li><a href="https://github.com/rust-lang/hashbrown/commit/5590aeb945c7872fb786d75f5a49fbc2f68c00ca"><code>5590aeb</code></a> Auto merge of <a href="https://github-redirect.dependabot.com/rust-lang/hashbrown/issues/303">#303</a> - Amanieu:send_sync, r=Amanieu</li> <li><a href="https://github.com/rust-lang/hashbrown/commit/898a9fe9128aaaf7064696a064cea1b4cbc20262"><code>898a9fe</code></a> Auto merge of <a href="https://github-redirect.dependabot.com/rust-lang/hashbrown/issues/301">#301</a> - ajtribick:entry_ref, r=Amanieu</li> <li><a href="https://github.com/rust-lang/hashbrown/commit/7c545e1c4ac69241f4dc37bd544f5e7064eeb0e3"><code>7c545e1</code></a> Add Send, Sync implementations for OccupiedEntryRef</li> <li><a href="https://github.com/rust-lang/hashbrown/commit/05ee33e9f0fa14bc869d120bcb8e2812d39574e3"><code>05ee33e</code></a> Disable clippy::missing_safety_doc lint on Allocator trait</li> <li><a href="https://github.com/rust-lang/hashbrown/commit/4cae5d5068e64db47a9c695f588cf44648514b4c"><code>4cae5d5</code></a> Fix trait bounds on Send/Sync impls</li> <li><a href="https://github.com/rust-lang/hashbrown/commit/f37c859bade936d5f3bf03b786c51305cad8f306"><code>f37c859</code></a> Disable clippy::missing_safety_doc lint on Allocator trait</li> <li><a href="https://github.com/rust-lang/hashbrown/commit/c40058a7416e788015507947c3208e15c72675e6"><code>c40058a</code></a> Add entry_ref API</li> <li>Additional commits viewable in <a href="https://github.com/rust-lang/hashbrown/compare/v0.11.0...v0.12.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 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]
