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

   Updates the requirements on 
[rustls-pemfile](https://github.com/rustls/pemfile) to permit the latest 
version.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/rustls/pemfile/releases";>rustls-pemfile's 
releases</a>.</em></p>
   <blockquote>
   <h2>2.0.0</h2>
   <h2>Headlines</h2>
   <ul>
   <li><strong>Improving API stability.</strong> This crate now uses types from 
<a href="https://crates.io/crates/rustls-pki-types";>rustls-pki-types</a>; we 
expect this to reduce the number of breaking changes in rustls ecosystem.</li>
   <li><strong><code>no_std</code> support.</strong> This crate can now work 
optionally without <code>std</code>: use the new 
<code>read_one_from_slice</code> API.</li>
   </ul>
   <h2>What's Changed</h2>
   <ul>
   <li>Switch to using the pki-types crate by <a 
href="https://github.com/djc";><code>@​djc</code></a> in <a 
href="https://redirect.github.com/rustls/pemfile/pull/24";>rustls/pemfile#24</a></li>
   <li>Bump version to 2.0.0-alpha.0 by <a 
href="https://github.com/djc";><code>@​djc</code></a> in <a 
href="https://redirect.github.com/rustls/pemfile/pull/25";>rustls/pemfile#25</a></li>
   <li>2.0.0-alpha.1: take pki-types 0.2 by <a 
href="https://github.com/ctz";><code>@​ctz</code></a> in <a 
href="https://redirect.github.com/rustls/pemfile/pull/26";>rustls/pemfile#26</a></li>
   <li>Add private_key() helper by <a 
href="https://github.com/djc";><code>@​djc</code></a> in <a 
href="https://redirect.github.com/rustls/pemfile/pull/27";>rustls/pemfile#27</a></li>
   <li>Bump actions/checkout from 3 to 4 by <a 
href="https://github.com/dependabot";><code>@​dependabot</code></a> in <a 
href="https://redirect.github.com/rustls/pemfile/pull/28";>rustls/pemfile#28</a></li>
   <li>Allow additionally parsing \r newlines in PEM files by <a 
href="https://github.com/complexspaces";><code>@​complexspaces</code></a> in <a 
href="https://redirect.github.com/rustls/pemfile/pull/30";>rustls/pemfile#30</a></li>
   <li>add no-std support by <a 
href="https://github.com/japaric";><code>@​japaric</code></a> in <a 
href="https://redirect.github.com/rustls/pemfile/pull/29";>rustls/pemfile#29</a></li>
   <li>Bump version to alpha.2 by <a 
href="https://github.com/djc";><code>@​djc</code></a> in <a 
href="https://redirect.github.com/rustls/pemfile/pull/33";>rustls/pemfile#33</a></li>
   </ul>
   <h2>New Contributors</h2>
   <ul>
   <li><a href="https://github.com/dependabot";><code>@​dependabot</code></a> 
made their first contribution in <a 
href="https://redirect.github.com/rustls/pemfile/pull/28";>rustls/pemfile#28</a></li>
   <li><a href="https://github.com/japaric";><code>@​japaric</code></a> made 
their first contribution in <a 
href="https://redirect.github.com/rustls/pemfile/pull/29";>rustls/pemfile#29</a></li>
   </ul>
   <p><strong>Full Changelog</strong>: <a 
href="https://github.com/rustls/pemfile/compare/v/1.0.4...v/2.0.0";>https://github.com/rustls/pemfile/compare/v/1.0.4...v/2.0.0</a></p>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/rustls/pemfile/commit/e0da4cead2584281bf87a3fc047870abc691af40";><code>e0da4ce</code></a>
 Bump to v2.0.0</li>
   <li><a 
href="https://github.com/rustls/pemfile/commit/12b9d7974b2d509c214caf7864bbafcc6f53a571";><code>12b9d79</code></a>
 Use pki-types v1</li>
   <li><a 
href="https://github.com/rustls/pemfile/commit/48790bc268dc132ec8ea1550e668b74a7fb3f5a5";><code>48790bc</code></a>
 Bump version to alpha.2</li>
   <li><a 
href="https://github.com/rustls/pemfile/commit/3aa829c7e8317fac1851357241455642502637d2";><code>3aa829c</code></a>
 add an opt-out std feature</li>
   <li><a 
href="https://github.com/rustls/pemfile/commit/0227a3ab699b70dcef0ee0a7f0d341cf6e01e488";><code>0227a3a</code></a>
 add <code>read_one_from_slice</code></li>
   <li><a 
href="https://github.com/rustls/pemfile/commit/6e367488e9f515b87aeecab4f7c179a448c1c89a";><code>6e36748</code></a>
 introduce an <code>Error</code> enum</li>
   <li><a 
href="https://github.com/rustls/pemfile/commit/b3c85f121d65d23400d06d1db724730bbc480c59";><code>b3c85f1</code></a>
 refactor <code>read_one</code>'s loop body into a separate function</li>
   <li><a 
href="https://github.com/rustls/pemfile/commit/2c2f1abb9a32738070309cd654afdf0622756032";><code>2c2f1ab</code></a>
 switch from std::prelude to core::prelude</li>
   <li><a 
href="https://github.com/rustls/pemfile/commit/4cade3f5bea1a10ae19fb318229b903ba012fe49";><code>4cade3f</code></a>
 Allow additionally parsing \r newlines in PEM files</li>
   <li><a 
href="https://github.com/rustls/pemfile/commit/c72614681cd0335463fb6c49ee10cd1c25912e5a";><code>c726146</code></a>
 Bump actions/checkout from 3 to 4</li>
   <li>Additional commits viewable in <a 
href="https://github.com/rustls/pemfile/compare/v/1.0.0...v/2.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