Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump rkyv from 0.7.40 to 0.7.42 (#2863)
Bumps [rkyv](https://github.com/rkyv/rkyv) from 0.7.40 to 0.7.42. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/rkyv/rkyv/releases">rkyv's releases</a>.</em></p> <blockquote> <h2>0.7.42</h2> <p>This bugfix release closes a number of issues:</p> <ul> <li><a href="https://redirect.github.com/rkyv/rkyv/issues/374">#374</a> Added const generics support to rkyv_typename and fixed a name collision with generated code and errors when using lifetimes as generics</li> <li><a href="https://redirect.github.com/rkyv/rkyv/issues/378">#378</a> Fixed a regression that caused <code>BufferScratch</code> to be <code>!Sync</code></li> <li><a href="https://redirect.github.com/rkyv/rkyv/issues/379">#379</a> Upgraded rkyv's supported version of <code>uuid</code> and fixed some feature unification problems</li> <li><a href="https://redirect.github.com/rkyv/rkyv/issues/381">#381</a> Fixed a missing <code>?Sized</code> bound on some wrapper type impls</li> <li><a href="https://redirect.github.com/rkyv/rkyv/issues/387">#387</a> Relaxed an unnecessary <code>Sized</code> bound for the inherent <code>TypeName</code> impl</li> </ul> <p>It also resolves an issue when validating tuples by upgrading rkyv's bytecheck version to 0.6.11.</p> <p>Thanks to <a href="https://github.com/c410-f3r"><code>@c410-f3r</code></a>, <a href="https://github.com/mkatychev"><code>@mkatychev</code></a>, <a href="https://github.com/ChillFish8"><code>@ChillFish8</code></a>, and <a href="https://github.com/edfraenkel"><code>@edfraenkel</code></a> for their hard work!</p> <h2>v0.7.41</h2> <p>This bugfix release includes a number of additions and fixes:</p> <ul> <li><a href="https://redirect.github.com/rkyv/rkyv/issues/342">#342</a> and <a href="https://redirect.github.com/rkyv/rkyv/issues/364">#364</a> Add missing <code>PartialOrd<&str></code> and <code>PartialOrd<String></code> impls for <code>ArchivedString</code></li> <li><a href="https://redirect.github.com/rkyv/rkyv/issues/346">#346</a> Adds a <code>From<T></code> impl for <code>ArchivedOption<T></code></li> <li><a href="https://redirect.github.com/rkyv/rkyv/issues/350">#350</a>, <a href="https://redirect.github.com/rkyv/rkyv/issues/351">#351</a>, <a href="https://redirect.github.com/rkyv/rkyv/issues/352">#352</a>, <a href="https://redirect.github.com/rkyv/rkyv/issues/355">#355</a>, <a href="https://redirect.github.com/rkyv/rkyv/issues/359">#359</a>, <a href="https://redirect.github.com/rkyv/rkyv/issues/360">#360</a>, and <a href="https://redirect.github.com/rkyv/rkyv/issues/372">#372</a> Improve the performance and expand the capabilities of <code>AlignedVec</code></li> <li><a href="https://redirect.github.com/rkyv/rkyv/issues/358">#358</a> and <a href="https://redirect.github.com/rkyv/rkyv/issues/361">#361</a> Disambiguate associated types generated in derive macros</li> <li><a href="https://redirect.github.com/rkyv/rkyv/issues/357">#357</a> Corrects disabled <code>Send</code> impls on <code>BufferScratch</code></li> <li><a href="https://redirect.github.com/rkyv/rkyv/issues/344">#344</a> Bumps rkyv's bytecheck dependency to 0.6.10, re-exports the crate, and provides a more convenient <code>#[archive(check_bytes)]</code> attribute to derive <code>CheckBytes</code> with rkyv's supported bytecheck version. See the new examples for more details.</li> </ul> <p>Additionally, rkyv's test suites once again pass MIRI under the new tree borrows model. You can test your own code that uses rkyv for undefined behavior by enabling tree borrows on your own projects.</p> <p>Thanks to <a href="https://github.com/mkatychev"><code>@mkatychev</code></a>, <a href="https://github.com/Qqwy"><code>@Qqwy</code></a>, <a href="https://github.com/brahms116"><code>@brahms116</code></a>, <a href="https://github.com/myronahn"><code>@myronahn</code></a>, <a href="https://github.com/overlookmotel"><code>@overlookmotel</code></a>, <a href="https://github.com/samlich"><code>@samlich</code></a>, <a href="https://github.com/freqmod"><code>@freqmod</code></a>, and <a href="https://github.com/MaxOhn"><code>@MaxOhn</code></a> for their contributions to this release!</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rkyv/rkyv/commit/4645bf686ffc142c45c3be652247d13e54288f70"><code>4645bf6</code></a> Relase 0.7.42</li> <li><a href="https://github.com/rkyv/rkyv/commit/a949e17b8f04bf010c74a36371794a0c3ca5367b"><code>a949e17</code></a> Issue 374 (<a href="https://redirect.github.com/rkyv/rkyv/issues/385">#385</a>)</li> <li><a href="https://github.com/rkyv/rkyv/commit/9e23a616cc9a91cbe2631c9b1531c10512748cc7"><code>9e23a61</code></a> Relax Sized bound on TypeName impl for &T (<a href="https://redirect.github.com/rkyv/rkyv/issues/387">#387</a>)</li> <li><a href="https://github.com/rkyv/rkyv/commit/e7d982abba51699357dd1fd3aca61cc0de6aa292"><code>e7d982a</code></a> Support <code>?Sized</code> serializers for various <code>with</code>s (<a href="https://redirect.github.com/rkyv/rkyv/issues/381">#381</a>)</li> <li><a href="https://github.com/rkyv/rkyv/commit/2f5866e5fb3a24b9b3541e42f8a2d958804019bc"><code>2f5866e</code></a> Update benchmarks</li> <li><a href="https://github.com/rkyv/rkyv/commit/6241fb0b6b2eaacbf197128757ba6c6a51b0e973"><code>6241fb0</code></a> Fix github and crates.io README for rkyv_dyn</li> <li><a href="https://github.com/rkyv/rkyv/commit/d63f4e60cfca70455580d05c3c51c7b6533a621b"><code>d63f4e6</code></a> added <code>bytecheck?/uuid</code> to <code>uuid_std</code> (<a href="https://redirect.github.com/rkyv/rkyv/issues/379">#379</a>)</li> <li><a href="https://github.com/rkyv/rkyv/commit/3d5f6fc2ec9addb4c5007c54464c7c64a92be8d7"><code>3d5f6fc</code></a> Fix regression of version 0.7.40 (<a href="https://redirect.github.com/rkyv/rkyv/issues/378">#378</a>)</li> <li><a href="https://github.com/rkyv/rkyv/commit/aa8b1a82cb1dd6c5bc4ec5941cf865f6ebab9472"><code>aa8b1a8</code></a> Release 0.7.41</li> <li><a href="https://github.com/rkyv/rkyv/commit/9e193362718dc5598f94a09dc8acaab2ad4ef8b4"><code>9e19336</code></a> Fix issues preventing test suite from passing</li> <li>Additional commits viewable in <a href="https://github.com/rkyv/rkyv/compare/v0.7.40...v0.7.42">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=rkyv&package-manager=cargo&previous-version=0.7.40&new-version=0.7.42)](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 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> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information