Skip to content

Commit dbdc627

Browse files
chore(deps): bump the all-other-cargo-deps group across 1 directory with 2 updates (#24450)
Bumps the all-other-cargo-deps group with 2 updates in the / directory: [uuid](https://github.com/uuid-rs/uuid) and [snmalloc-rs](https://github.com/microsoft/snmalloc). Updates `uuid` from 1.24.0 to 1.24.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/uuid-rs/uuid/releases">uuid's releases</a>.</em></p> <blockquote> <h2>v1.24.1</h2> <h2>What's Changed</h2> <ul> <li>Fix non-ASCII character handling in parse diagnostics by <a href="https://github.com/questfever"><code>@​questfever</code></a> in <a href="https://redirect.github.com/uuid-rs/uuid/pull/899">uuid-rs/uuid#899</a></li> <li>Prepare for 1.24.1 release by <a href="https://github.com/KodrAus"><code>@​KodrAus</code></a> in <a href="https://redirect.github.com/uuid-rs/uuid/pull/900">uuid-rs/uuid#900</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/questfever"><code>@​questfever</code></a> made their first contribution in <a href="https://redirect.github.com/uuid-rs/uuid/pull/899">uuid-rs/uuid#899</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/uuid-rs/uuid/compare/v1.24.0...v1.24.1">https://github.com/uuid-rs/uuid/compare/v1.24.0...v1.24.1</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/uuid-rs/uuid/commit/2ea38af9f226cad4b50b560cbc18e38927a0a58d"><code>2ea38af</code></a> Merge pull request <a href="https://redirect.github.com/uuid-rs/uuid/issues/900">#900</a> from uuid-rs/cargo/v1.24.1</li> <li><a href="https://github.com/uuid-rs/uuid/commit/9dbeb04a438d422f73d6ca222d135f060f239cce"><code>9dbeb04</code></a> prepare for 1.24.1 release</li> <li><a href="https://github.com/uuid-rs/uuid/commit/e113df8c8fa56874b15e4637038d30f0185058f5"><code>e113df8</code></a> Merge pull request <a href="https://redirect.github.com/uuid-rs/uuid/issues/899">#899</a> from questfever/main</li> <li><a href="https://github.com/uuid-rs/uuid/commit/b0177659b3f37777f30d8b12bf2d86b592bf1feb"><code>b017765</code></a> Fix non-ASCII character handling in parse diagnostics</li> <li>See full diff in <a href="https://github.com/uuid-rs/uuid/compare/v1.24.0...v1.24.1">compare view</a></li> </ul> </details> <br /> Updates `snmalloc-rs` from 0.7.4 to 0.7.5 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/microsoft/snmalloc/releases">snmalloc-rs's releases</a>.</em></p> <blockquote> <h2>0.7.5</h2> <h2>What's Changed</h2> <p>This release adds C23 API support, pointer-authentication protection for the free list, improved AArch64 platform support, and expanded memory usage statistics in Rust.</p> <h3>New Features</h3> <h4>C23 API support</h4> <ul> <li>Expose <code>free_sized</code>/<code>free_aligned_sized</code> by <a href="https://github.com/SchrodingerZhu"><code>@​SchrodingerZhu</code></a> in <a href="https://redirect.github.com/microsoft/snmalloc/pull/832">#832</a></li> </ul> <h4>Security mitigations</h4> <ul> <li>Adding Pointer-Authentication Protection for Free List Forward Edge by <a href="https://github.com/Pengxiang-Huang"><code>@​Pengxiang-Huang</code></a> in <a href="https://redirect.github.com/microsoft/snmalloc/pull/840">#840</a></li> </ul> <h3>Platform support</h3> <ul> <li>Implement <code>tick()</code> for AArch64 on non-Apple platforms by <a href="https://github.com/mjp41"><code>@​mjp41</code></a> in <a href="https://redirect.github.com/microsoft/snmalloc/pull/854">#854</a></li> </ul> <h4>Rust</h4> <ul> <li>Hotfix for cargo publish by <a href="https://github.com/SchrodingerZhu"><code>@​SchrodingerZhu</code></a> in <a href="https://redirect.github.com/microsoft/snmalloc/pull/831">#831</a></li> <li>Expose memory usage statistics to Rust via <code>SnMalloc::memory_stats()</code> by <a href="https://github.com/jayakasadev"><code>@​jayakasadev</code></a> in <a href="https://redirect.github.com/microsoft/snmalloc/pull/851">#851</a></li> </ul> <h3>Bug Fixes</h3> <ul> <li>Fix MSVC C4864 warning and testlib <code>message_impl</code> link error by <a href="https://github.com/matajoh"><code>@​matajoh</code></a> in <a href="https://redirect.github.com/microsoft/snmalloc/pull/858">#858</a></li> </ul> <h3>Testing</h3> <ul> <li>Add tests for <code>src/snmalloc/override/new.cc</code> by <a href="https://github.com/paulhdk"><code>@​paulhdk</code></a> in <a href="https://redirect.github.com/microsoft/snmalloc/pull/839">#839</a></li> <li>Add corruption-detection test for probabilistic mitigations by <a href="https://github.com/mjp41"><code>@​mjp41</code></a> in <a href="https://redirect.github.com/microsoft/snmalloc/pull/848">#848</a></li> <li>Move <code>test_memory_stats</code> to an integration test by <a href="https://github.com/mjp41"><code>@​mjp41</code></a> in <a href="https://redirect.github.com/microsoft/snmalloc/pull/856">#856</a></li> </ul> <h3>Build</h3> <ul> <li>Use <code>rdynamic</code> more by <a href="https://github.com/mjp41"><code>@​mjp41</code></a> in <a href="https://redirect.github.com/microsoft/snmalloc/pull/841">#841</a></li> <li>Test build performance improvements by <a href="https://github.com/mjp41"><code>@​mjp41</code></a> in <a href="https://redirect.github.com/microsoft/snmalloc/pull/835">#835</a></li> </ul> <h3>CI</h3> <ul> <li>Add cross-platform Coverage CI by <a href="https://github.com/mjp41"><code>@​mjp41</code></a> in <a href="https://redirect.github.com/microsoft/snmalloc/pull/842">#842</a></li> <li>Reduce ctest wall-time without losing coverage by <a href="https://github.com/mjp41"><code>@​mjp41</code></a> in <a href="https://redirect.github.com/microsoft/snmalloc/pull/844">#844</a></li> <li>Fix shell quoting in coverage-comment workflow by <a href="https://github.com/mjp41"><code>@​mjp41</code></a> in <a href="https://redirect.github.com/microsoft/snmalloc/pull/845">#845</a></li> <li>Resolve PR by head SHA in coverage-comment workflow by <a href="https://github.com/mjp41"><code>@​mjp41</code></a> in <a href="https://redirect.github.com/microsoft/snmalloc/pull/847">#847</a></li> <li>Don't mis-route nightly coverage comment to last-merged PR by <a href="https://github.com/mjp41"><code>@​mjp41</code></a> in <a href="https://redirect.github.com/microsoft/snmalloc/pull/849">#849</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/paulhdk"><code>@​paulhdk</code></a> made their first contribution in <a href="https://redirect.github.com/microsoft/snmalloc/pull/839">#839</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/microsoft/snmalloc/commit/526c55bdffa17aae20a9a3d24fe68a7a3b8d9894"><code>526c55b</code></a> Fix MSVC C4864 warning and testlib message_impl link error (<a href="https://redirect.github.com/microsoft/snmalloc/issues/858">#858</a>)</li> <li><a href="https://github.com/microsoft/snmalloc/commit/57d6aa09fbd088787baccad51570e81b496ddd50"><code>57d6aa0</code></a> Move test_memory_stats to an integration test (<a href="https://redirect.github.com/microsoft/snmalloc/issues/856">#856</a>)</li> <li><a href="https://github.com/microsoft/snmalloc/commit/3d49eeee8d094f00a2ab85187fc33020af1197dc"><code>3d49eee</code></a> Implement tick() for aarch64 on non-Apple platforms (<a href="https://redirect.github.com/microsoft/snmalloc/issues/854">#854</a>)</li> <li><a href="https://github.com/microsoft/snmalloc/commit/f9b8ed25f61831a7be8e7589b64bb42e503c5e11"><code>f9b8ed2</code></a> Expose memory usage statistics to Rust via SnMalloc::memory_stats() (<a href="https://redirect.github.com/microsoft/snmalloc/issues/851">#851</a>)</li> <li><a href="https://github.com/microsoft/snmalloc/commit/48fd18a3c9baaeb89205c654e12765ff3c5ff902"><code>48fd18a</code></a> Add corruption-detection test for probabilistic mitigations (<a href="https://redirect.github.com/microsoft/snmalloc/issues/848">#848</a>)</li> <li><a href="https://github.com/microsoft/snmalloc/commit/7559b1ef16a76476998ad5295a93867f18ec14ca"><code>7559b1e</code></a> Don't mis-route nightly coverage comment to last-merged PR (<a href="https://redirect.github.com/microsoft/snmalloc/issues/849">#849</a>)</li> <li><a href="https://github.com/microsoft/snmalloc/commit/18d065b1a9bdb3a1e5d1394b40e0b2868d98f59c"><code>18d065b</code></a> Adding Pointer-Authentication Protection For Free List Forward Edge (<a href="https://redirect.github.com/microsoft/snmalloc/issues/840">#840</a>)</li> <li><a href="https://github.com/microsoft/snmalloc/commit/a6e1e9a61a216faed59d42cb845d4c4bc4f9aef1"><code>a6e1e9a</code></a> Reduce ctest wall-time without losing coverage (<a href="https://redirect.github.com/microsoft/snmalloc/issues/844">#844</a>)</li> <li><a href="https://github.com/microsoft/snmalloc/commit/6e0989c5f84c2774c27c018aa4298e78cef4ac07"><code>6e0989c</code></a> Resolve PR by head SHA in coverage-comment workflow (<a href="https://redirect.github.com/microsoft/snmalloc/issues/847">#847</a>)</li> <li><a href="https://github.com/microsoft/snmalloc/commit/34c9d32c15d928fd02a88b8e825bfc3dc7e8eb4f"><code>34c9d32</code></a> Fix shell quoting in coverage-comment workflow (<a href="https://redirect.github.com/microsoft/snmalloc/issues/845">#845</a>)</li> <li>Additional commits viewable in <a href="https://github.com/microsoft/snmalloc/compare/0.7.4...0.7.5">compare view</a></li> </ul> </details> <br /> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 4798476 commit dbdc627

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)