dependabot[bot] opened a new pull request, #14334:
URL: https://github.com/apache/datafusion/pull/14334

   Updates the requirements on 
[rand_distr](https://github.com/rust-random/rand) to permit the latest version.
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/rust-random/rand/blob/master/CHANGELOG.md";>rand_distr's
 changelog</a>.</em></p>
   <blockquote>
   <h2>[0.5.0] - 2018-05-21</h2>
   <h3>Crate features and organisation</h3>
   <ul>
   <li>Minimum Rust version update: 1.22.0. (<a 
href="https://redirect.github.com/rust-random/rand/issues/239";>#239</a>)</li>
   <li>Create a separate <code>rand_core</code> crate. (<a 
href="https://redirect.github.com/rust-random/rand/issues/288";>#288</a>)</li>
   <li>Deprecate <code>rand_derive</code>. (<a 
href="https://redirect.github.com/rust-random/rand/issues/256";>#256</a>)</li>
   <li>Add <code>prelude</code> (and module reorganisation). (<a 
href="https://redirect.github.com/rust-random/rand/issues/435";>#435</a>)</li>
   <li>Add <code>log</code> feature. Logging is now available in 
<code>JitterRng</code>, <code>OsRng</code>, <code>EntropyRng</code> and 
<code>ReseedingRng</code>. (<a 
href="https://redirect.github.com/rust-random/rand/issues/246";>#246</a>)</li>
   <li>Add <code>serde1</code> feature for some PRNGs. (<a 
href="https://redirect.github.com/rust-random/rand/issues/189";>#189</a>)</li>
   <li><code>stdweb</code> feature for <code>OsRng</code> support on WASM via 
stdweb. (<a 
href="https://redirect.github.com/rust-random/rand/issues/272";>#272</a>, <a 
href="https://redirect.github.com/rust-random/rand/issues/336";>#336</a>)</li>
   </ul>
   <h3><code>Rng</code> trait</h3>
   <ul>
   <li>Split <code>Rng</code> in <code>RngCore</code> and <code>Rng</code> 
extension trait.
   <code>next_u32</code>, <code>next_u64</code> and <code>fill_bytes</code> are 
now part of <code>RngCore</code>. (<a 
href="https://redirect.github.com/rust-random/rand/issues/265";>#265</a>)</li>
   <li>Add <code>Rng::sample</code>. (<a 
href="https://redirect.github.com/rust-random/rand/issues/256";>#256</a>)</li>
   <li>Deprecate <code>Rng::gen_weighted_bool</code>. (<a 
href="https://redirect.github.com/rust-random/rand/issues/308";>#308</a>)</li>
   <li>Add <code>Rng::gen_bool</code>. (<a 
href="https://redirect.github.com/rust-random/rand/issues/308";>#308</a>)</li>
   <li>Remove <code>Rng::next_f32</code> and <code>Rng::next_f64</code>. (<a 
href="https://redirect.github.com/rust-random/rand/issues/273";>#273</a>)</li>
   <li>Add optimized <code>Rng::fill</code> and <code>Rng::try_fill</code> 
methods. (<a 
href="https://redirect.github.com/rust-random/rand/issues/247";>#247</a>)</li>
   <li>Deprecate <code>Rng::gen_iter</code>. (<a 
href="https://redirect.github.com/rust-random/rand/issues/286";>#286</a>)</li>
   <li>Deprecate <code>Rng::gen_ascii_chars</code>. (<a 
href="https://redirect.github.com/rust-random/rand/issues/279";>#279</a>)</li>
   </ul>
   <h3><code>rand_core</code> crate</h3>
   <ul>
   <li><code>rand</code> now depends on new <code>rand_core</code> crate (<a 
href="https://redirect.github.com/rust-random/rand/issues/288";>#288</a>)</li>
   <li><code>RngCore</code> and <code>SeedableRng</code> are now part of 
<code>rand_core</code>. (<a 
href="https://redirect.github.com/rust-random/rand/issues/288";>#288</a>)</li>
   <li>Add modules to help implementing RNGs <code>impl</code> and 
<code>le</code>. (<a 
href="https://redirect.github.com/rust-random/rand/issues/209";>#209</a>, <a 
href="https://redirect.github.com/rust-random/rand/issues/228";>#228</a>)</li>
   <li>Add <code>Error</code> and <code>ErrorKind</code>. (<a 
href="https://redirect.github.com/rust-random/rand/issues/225";>#225</a>)</li>
   <li>Add <code>CryptoRng</code> marker trait. (<a 
href="https://redirect.github.com/rust-random/rand/issues/273";>#273</a>)</li>
   <li>Add <code>BlockRngCore</code> trait. (<a 
href="https://redirect.github.com/rust-random/rand/issues/281";>#281</a>)</li>
   <li>Add <code>BlockRng</code> and <code>BlockRng64</code> wrappers to help 
implementations. (<a 
href="https://redirect.github.com/rust-random/rand/issues/281";>#281</a>, <a 
href="https://redirect.github.com/rust-random/rand/issues/325";>#325</a>)</li>
   <li>Revise the <code>SeedableRng</code> trait. (<a 
href="https://redirect.github.com/rust-random/rand/issues/233";>#233</a>)</li>
   <li>Remove default implementations for <code>RngCore::next_u64</code> and 
<code>RngCore::fill_bytes</code>. (<a 
href="https://redirect.github.com/rust-random/rand/issues/288";>#288</a>)</li>
   <li>Add <code>RngCore::try_fill_bytes</code>. (<a 
href="https://redirect.github.com/rust-random/rand/issues/225";>#225</a>)</li>
   </ul>
   <h3>Other traits and types</h3>
   <ul>
   <li>Add <code>FromEntropy</code> trait. (<a 
href="https://redirect.github.com/rust-random/rand/issues/233";>#233</a>, <a 
href="https://redirect.github.com/rust-random/rand/issues/375";>#375</a>)</li>
   <li>Add <code>SmallRng</code> wrapper. (<a 
href="https://redirect.github.com/rust-random/rand/issues/296";>#296</a>)</li>
   <li>Rewrite <code>ReseedingRng</code> to only work with 
<code>BlockRngCore</code> (substantial performance improvement). (<a 
href="https://redirect.github.com/rust-random/rand/issues/281";>#281</a>)</li>
   <li>Deprecate <code>weak_rng</code>. Use <code>SmallRng</code> instead. (<a 
href="https://redirect.github.com/rust-random/rand/issues/296";>#296</a>)</li>
   <li>Deprecate <code>AsciiGenerator</code>. (<a 
href="https://redirect.github.com/rust-random/rand/issues/279";>#279</a>)</li>
   </ul>
   <h3>Random number generators</h3>
   <ul>
   <li>Switch <code>StdRng</code> and <code>thread_rng</code> to HC-128. (<a 
href="https://redirect.github.com/rust-random/rand/issues/277";>#277</a>)</li>
   <li><code>StdRng</code> must now be created with <code>from_entropy</code> 
instead of <code>new</code></li>
   <li>Change <code>thread_rng</code> reseeding threshold to 32 MiB. (<a 
href="https://redirect.github.com/rust-random/rand/issues/277";>#277</a>)</li>
   <li>PRNGs no longer implement <code>Copy</code>. (<a 
href="https://redirect.github.com/rust-random/rand/issues/209";>#209</a>)</li>
   <li><code>Debug</code> implementations no longer show internals. (<a 
href="https://redirect.github.com/rust-random/rand/issues/209";>#209</a>)</li>
   <li>Implement <code>Clone</code> for <code>ReseedingRng</code>, 
<code>JitterRng</code>, OsRng`. (<a 
href="https://redirect.github.com/rust-random/rand/issues/383";>#383</a>, <a 
href="https://redirect.github.com/rust-random/rand/issues/384";>#384</a>)</li>
   <li>Implement serialization for <code>XorShiftRng</code>, 
<code>IsaacRng</code> and <code>Isaac64Rng</code> under the <code>serde1</code> 
feature. (<a 
href="https://redirect.github.com/rust-random/rand/issues/189";>#189</a>)</li>
   <li>Implement <code>BlockRngCore</code> for <code>ChaChaCore</code> and 
<code>Hc128Core</code>. (<a 
href="https://redirect.github.com/rust-random/rand/issues/281";>#281</a>)</li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/rust-random/rand/commit/5f3c375f73b67584dbf693ee5dab1aca2c2f8b9d";><code>5f3c375</code></a>
 Merge pull request <a 
href="https://redirect.github.com/rust-random/rand/issues/469";>#469</a> from 
pitdicker/rand_05_release</li>
   <li><a 
href="https://github.com/rust-random/rand/commit/66c7025b5643d77b6faea50241a557c09a971f0c";><code>66c7025</code></a>
 Update version numbers: rand_core 0.2.0 and rand 0.5.0</li>
   <li><a 
href="https://github.com/rust-random/rand/commit/8f57a1305c36bb355af6010986847763a1cc04f4";><code>8f57a13</code></a>
 Merge pull request <a 
href="https://redirect.github.com/rust-random/rand/issues/465";>#465</a> from 
pitdicker/benchmarks</li>
   <li><a 
href="https://github.com/rust-random/rand/commit/9263b5c7f8263715b0f679c8ed67e563d0cf60c4";><code>9263b5c</code></a>
 Clean up benchmarks</li>
   <li><a 
href="https://github.com/rust-random/rand/commit/90191322d2dc3990c7d26edab5c12f3d3910fea4";><code>9019132</code></a>
 Merge pull request <a 
href="https://redirect.github.com/rust-random/rand/issues/453";>#453</a> from 
pitdicker/changelog_05</li>
   <li><a 
href="https://github.com/rust-random/rand/commit/55bc5cd8b73fa0a1a1211b0b1600bc961284f379";><code>55bc5cd</code></a>
 Update changelog</li>
   <li><a 
href="https://github.com/rust-random/rand/commit/cfe4007c82855cad76fb7b312ee1fd8ee75218c5";><code>cfe4007</code></a>
 Update rand_core doc url version</li>
   <li><a 
href="https://github.com/rust-random/rand/commit/5953334be91fa979b7b2467ae733aa28f9029b93";><code>5953334</code></a>
 Merge pull request <a 
href="https://redirect.github.com/rust-random/rand/issues/461";>#461</a> from 
dhardy/fill-zero-len</li>
   <li><a 
href="https://github.com/rust-random/rand/commit/1509f9d32ea6bfa1ec020d1670dbaa01094552d5";><code>1509f9d</code></a>
 Fix <a 
href="https://redirect.github.com/rust-random/rand/issues/460";>#460</a>: fill 
shouldn't panic on zero-length slices</li>
   <li><a 
href="https://github.com/rust-random/rand/commit/89b268e2d770dce1b3156d6417078fbce4816f02";><code>89b268e</code></a>
 Merge pull request <a 
href="https://redirect.github.com/rust-random/rand/issues/456";>#456</a> from 
archer884/patch-1</li>
   <li>Additional commits viewable in <a 
href="https://github.com/rust-random/rand/compare/rand_distr-0.4.3...0.5.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: github-unsubscr...@datafusion.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org
For additional commands, e-mail: github-h...@datafusion.apache.org

Reply via email to