Skip to content

Commit b427410

Browse files
chore(deps): bump the all-cargo-dependencies group with 20 updates (#856)
Bumps the all-cargo-dependencies group with 20 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.96` | `1.0.97` | | [libdeflater](https://github.com/adamkewley/libdeflater) | `1.23.0` | `1.23.1` | | [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.93` | `1.0.94` | | [quote](https://github.com/dtolnay/quote) | `1.0.38` | `1.0.39` | | [serde_json](https://github.com/serde-rs/json) | `1.0.139` | `1.0.140` | | [syn](https://github.com/dtolnay/syn) | `2.0.98` | `2.0.99` | | [thiserror](https://github.com/dtolnay/thiserror) | `2.0.11` | `2.0.12` | | [uuid](https://github.com/uuid-rs/uuid) | `1.14.0` | `1.15.1` | | [bytemuck](https://github.com/Lokathor/bytemuck) | `1.21.0` | `1.22.0` | | [flecs_ecs](https://github.com/Indra-db/Flecs-Rust) | ``6c82ffa`` | ``a8be639`` | | [valence_anvil](https://github.com/andrewgazelka/valence) | ``3b8aa56`` | ``7c66471`` | | [valence_build_utils](https://github.com/andrewgazelka/valence) | ``3b8aa56`` | ``7c66471`` | | [valence_generated](https://github.com/andrewgazelka/valence) | ``3b8aa56`` | ``7c66471`` | | [valence_ident](https://github.com/andrewgazelka/valence) | ``3b8aa56`` | ``7c66471`` | | [valence_nbt](https://github.com/andrewgazelka/valence) | ``3b8aa56`` | ``7c66471`` | | [valence_protocol](https://github.com/andrewgazelka/valence) | ``3b8aa56`` | ``7c66471`` | | [valence_registry](https://github.com/andrewgazelka/valence) | ``3b8aa56`` | ``7c66471`` | | [valence_server](https://github.com/andrewgazelka/valence) | ``3b8aa56`` | ``7c66471`` | | [valence_text](https://github.com/andrewgazelka/valence) | ``3b8aa56`` | ``7c66471`` | | [aligned-vec](https://github.com/sarah-ek/aligned-vec) | `0.6.1` | `0.6.2` | Updates `anyhow` from 1.0.96 to 1.0.97 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/anyhow/releases">anyhow's releases</a>.</em></p> <blockquote> <h2>1.0.97</h2> <ul> <li>Documentation improvements</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/anyhow/commit/bfb89ef244fa60af17fb844dc3bddf4b62e4ac9f"><code>bfb89ef</code></a> Release 1.0.97</li> <li><a href="https://github.com/dtolnay/anyhow/commit/c7fca9b08627fe0c4034a3fd38595ffd7dcc8e0e"><code>c7fca9b</code></a> Ignore elidable_lifetime_names pedantic clippy lint</li> <li><a href="https://github.com/dtolnay/anyhow/commit/427c0bb0f34d5da378112f6a19db9efebfd0e40a"><code>427c0bb</code></a> Point standard library links to stable</li> <li>See full diff in <a href="https://github.com/dtolnay/anyhow/compare/1.0.96...1.0.97">compare view</a></li> </ul> </details> <br /> Updates `libdeflater` from 1.23.0 to 1.23.1 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/adamkewley/libdeflater/blob/master/CHANGELOG.md">libdeflater's changelog</a>.</em></p> <blockquote> <h2>[1.23.1]</h2> <ul> <li>Changed <code>Compressor</code>/<code>Decompressor</code> functions to accept a <code>NonNull&lt;T&gt;</code> rather than a raw pointer (<a href="https://redirect.github.com/adamkewley/libdeflater/issues/43">#43</a>, thanks <a href="https://github.com/Dr-Emann"><code>@​Dr-Emann</code></a>)</li> <li>Added the following structs/functions to <code>libdeflate-sys</code> in order to support per-object allocators (<a href="https://redirect.github.com/adamkewley/libdeflater/issues/44">#44</a>, thanks <a href="https://github.com/Dr-Emann"><code>@​Dr-Emann</code></a>): <ul> <li><code>libdeflate_options</code></li> <li><code>libdeflate_alloc_decompressor_ex</code></li> <li><code>libdeflate_alloc_compressor_ex</code></li> <li><code>libdeflate_gzip_decompress_ex</code></li> <li><code>libdeflate_zlib_decompress_ex</code></li> <li><code>libdeflate_deflate_decompress_ex</code></li> </ul> </li> <li>The type of <code>libdeflate_result</code> was changed from <code>u32</code> to <code>c_uint</code>. This shouldn't affect almost any downstream code (where <code>u32</code> == <code>c_uint</code>) but is more robust when compiling on alternative architectures (<a href="https://redirect.github.com/adamkewley/libdeflater/issues/44">#44</a>).</li> <li>The stdlib <code>Default</code> trait was implemented for <code>Decompressor</code>, <code>Compressor</code>, <code>Crc</code>, and <code>Adler32</code> (<a href="https://redirect.github.com/adamkewley/libdeflater/issues/45">#45</a>, thanks <a href="https://github.com/Dr-Emann"><code>@​Dr-Emann</code></a>).</li> <li><code>CompressionLvl</code>-related functions (e.g. <code>CompressionLevel::fastest()</code>), <code>Crc::new</code>, <code>Crc::sum</code>, <code>Adler32::new</code>, and <code>Adler32::sum</code> are now <code>const</code> (<a href="https://redirect.github.com/adamkewley/libdeflater/issues/46">#46</a>, thanks <a href="https://github.com/Dr-Emann"><code>@​Dr-Emann</code></a>).</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/adamkewley/libdeflater/commit/6eaf67dfaf81d3089e5d555afdd4f9501cb4c0b4"><code>6eaf67d</code></a> Bump version to 1.23.1 (<a href="https://redirect.github.com/adamkewley/libdeflater/issues/43">#43</a>, <a href="https://redirect.github.com/adamkewley/libdeflater/issues/44">#44</a>, <a href="https://redirect.github.com/adamkewley/libdeflater/issues/45">#45</a>, <a href="https://redirect.github.com/adamkewley/libdeflater/issues/46">#46</a>)</li> <li><a href="https://github.com/adamkewley/libdeflater/commit/71d5c435b81b465b3600aac9b637421a308881fa"><code>71d5c43</code></a> Update CHANGELOG.md (<a href="https://redirect.github.com/adamkewley/libdeflater/issues/43">#43</a>, <a href="https://redirect.github.com/adamkewley/libdeflater/issues/44">#44</a>, <a href="https://redirect.github.com/adamkewley/libdeflater/issues/45">#45</a>, <a href="https://redirect.github.com/adamkewley/libdeflater/issues/46">#46</a>)</li> <li><a href="https://github.com/adamkewley/libdeflater/commit/1703811504ad896b4364c5c26c997ed7a711d028"><code>1703811</code></a> Merge pull request <a href="https://redirect.github.com/adamkewley/libdeflater/issues/46">#46</a> from Dr-Emann/push-kzmvowusryow</li> <li><a href="https://github.com/adamkewley/libdeflater/commit/fb003198dad71b825fc394df9a44e56dbcd11b77"><code>fb00319</code></a> mark functions <code>const</code> where possible</li> <li><a href="https://github.com/adamkewley/libdeflater/commit/51600b34cb4b72c505b06969c40299d18210f709"><code>51600b3</code></a> Merge pull request <a href="https://redirect.github.com/adamkewley/libdeflater/issues/45">#45</a> from Dr-Emann/push-rxrpqlqksltr</li> <li><a href="https://github.com/adamkewley/libdeflater/commit/666c1f522211e1ed05252b3f6c53812105347358"><code>666c1f5</code></a> implement Default for libdeflater types</li> <li><a href="https://github.com/adamkewley/libdeflater/commit/f32eea31ee450d9b74b07ab6c4de3c866b06e63d"><code>f32eea3</code></a> Merge pull request <a href="https://redirect.github.com/adamkewley/libdeflater/issues/44">#44</a> from Dr-Emann/push-xxstkkrylwnw</li> <li><a href="https://github.com/adamkewley/libdeflater/commit/9bdac7a8813e88d496ae1c91a3ef8f06e2250fa0"><code>9bdac7a</code></a> use per-{de,}compressor malloc/free, to avoid needing to mess with global sta...</li> <li><a href="https://github.com/adamkewley/libdeflater/commit/abcb591463cf95a551f3016dc418ff5a95e19314"><code>abcb591</code></a> add simple test using options</li> <li><a href="https://github.com/adamkewley/libdeflater/commit/eca0361800dfafa740493c59a47ca7709dbe6a8d"><code>eca0361</code></a> add bindings to decompress_ex functions</li> <li>Additional commits viewable in <a href="https://github.com/adamkewley/libdeflater/compare/1.23.0...1.23.1">compare view</a></li> </ul> </details> <br /> Updates `proc-macro2` from 1.0.93 to 1.0.94 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/proc-macro2/releases">proc-macro2's releases</a>.</em></p> <blockquote> <h2>1.0.94</h2> <ul> <li>Documentation improvements</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/proc-macro2/commit/7cb0f3cdee5888a581c0041ba9acae5727372277"><code>7cb0f3c</code></a> Release 1.0.94</li> <li><a href="https://github.com/dtolnay/proc-macro2/commit/23c425c9ef1dd7c04f8c303f57506b16688a5ce6"><code>23c425c</code></a> Raise minimum tested compiler to rust 1.67</li> <li><a href="https://github.com/dtolnay/proc-macro2/commit/cbffe0cf98cd99bcbc498941a45a011c7ef7cc2e"><code>cbffe0c</code></a> Ignore elidable_lifetime_names pedantic clippy lint</li> <li><a href="https://github.com/dtolnay/proc-macro2/commit/a12fe8b2b4b506ffd5a7f0dfe36973aeb0e202c2"><code>a12fe8b</code></a> Point standard library links to stable</li> <li><a href="https://github.com/dtolnay/proc-macro2/commit/36920b198e21d694a62b4090448c85eb84633226"><code>36920b1</code></a> Combine rustdoc semver exempt cfg into one argument</li> <li><a href="https://github.com/dtolnay/proc-macro2/commit/3a9bc71cb0dfab98bf8974c8ed1be5a4d6950830"><code>3a9bc71</code></a> Convert html links to intra-doc links</li> <li><a href="https://github.com/dtolnay/proc-macro2/commit/c7d999c89febc2d3e73e1c934c8307734d9825a1"><code>c7d999c</code></a> Unset doc-scrape-examples for lib target</li> <li><a href="https://github.com/dtolnay/proc-macro2/commit/020a8aef00ebd3a210f0493803fe1e04d04057cc"><code>020a8ae</code></a> Resolve unnecessary_semicolon pedantic clippy lint</li> <li><a href="https://github.com/dtolnay/proc-macro2/commit/0a77455b508826965e392019dd6a1b7f432b8aea"><code>0a77455</code></a> Ignore WebAssembly linker warning</li> <li><a href="https://github.com/dtolnay/proc-macro2/commit/ffc417ac5bc177e226c24d4237c9a3a49535f937"><code>ffc417a</code></a> More precise gitignore patterns</li> <li>Additional commits viewable in <a href="https://github.com/dtolnay/proc-macro2/compare/1.0.93...1.0.94">compare view</a></li> </ul> </details> <br /> Updates `quote` from 1.0.38 to 1.0.39 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/quote/releases">quote's releases</a>.</em></p> <blockquote> <h2>1.0.39</h2> <ul> <li>Documentation improvements</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/quote/commit/7d089f5d42c58bd194401c59f20a6ab689bc47ec"><code>7d089f5</code></a> Release 1.0.39</li> <li><a href="https://github.com/dtolnay/quote/commit/dd15f29e905e16596177291c06001a3704f7c025"><code>dd15f29</code></a> Ignore elidable_lifetime_names pedantic clippy lint</li> <li><a href="https://github.com/dtolnay/quote/commit/b723616fdbf0815bbf89df3a2115251d1b68cfb5"><code>b723616</code></a> Point standard library links to stable</li> <li><a href="https://github.com/dtolnay/quote/commit/ddbabd52d4085bc074d7ad0b6599b4acc9d462b9"><code>ddbabd5</code></a> Convert html links to intra-doc links</li> <li><a href="https://github.com/dtolnay/quote/commit/fa4618908288c1ddca5ad21ae4e66e1211ee118a"><code>fa46189</code></a> Unset doc-scrape-examples for lib target</li> <li><a href="https://github.com/dtolnay/quote/commit/4d071e3c775a9ea19a7f22c37394901d005e6834"><code>4d071e3</code></a> Resolve doc_overindented_list_items clippy lint</li> <li><a href="https://github.com/dtolnay/quote/commit/908ddbd24bcab2a497606e19f707a9756d01feb0"><code>908ddbd</code></a> More precise gitignore patterns</li> <li>See full diff in <a href="https://github.com/dtolnay/quote/compare/1.0.38...1.0.39">compare view</a></li> </ul> </details> <br /> Updates `serde_json` from 1.0.139 to 1.0.140 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/serde-rs/json/releases">serde_json's releases</a>.</em></p> <blockquote> <h2>v1.0.140</h2> <ul> <li>Documentation improvements</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/serde-rs/json/commit/762783414e6c4f8d670c9d87eb04913efb80d3be"><code>7627834</code></a> Release 1.0.140</li> <li><a href="https://github.com/serde-rs/json/commit/d77a498c8061f43cf4515a3e861dccb338d863b9"><code>d77a498</code></a> Merge pull request <a href="https://redirect.github.com/serde-rs/json/issues/1245">#1245</a> from serde-rs/powerpc</li> <li><a href="https://github.com/serde-rs/json/commit/b34d317089ef43f6d35306be06018b8d87eeb2b5"><code>b34d317</code></a> Delete unused gcc installation</li> <li><a href="https://github.com/serde-rs/json/commit/f7200c3cf66b0c46e19a911a2b9121e27c101fec"><code>f7200c3</code></a> Ignore unbuffered_bytes clippy lint</li> <li><a href="https://github.com/serde-rs/json/commit/76cd4fb383eab71c22cc89ce270b08f4f77d788f"><code>76cd4fb</code></a> Ignore elidable_lifetime_names pedantic clippy lint</li> <li><a href="https://github.com/serde-rs/json/commit/400eaa977f1f0a1c9ad5e35d634ed2226bf1218c"><code>400eaa9</code></a> Point standard library links to stable</li> <li>See full diff in <a href="https://github.com/serde-rs/json/compare/v1.0.139...v1.0.140">compare view</a></li> </ul> </details> <br /> Updates `syn` from 2.0.98 to 2.0.99 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/syn/releases">syn's releases</a>.</em></p> <blockquote> <h2>2.0.99</h2> <ul> <li>Documentation improvements</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/syn/commit/4552057000803dd06dd51af255b6b6de86495988"><code>4552057</code></a> Release 2.0.99</li> <li><a href="https://github.com/dtolnay/syn/commit/f4d8f0e39ec6230530c61a9d77a85bcef4b9b6de"><code>f4d8f0e</code></a> Ignore elidable_lifetime_names pedantic clippy lint</li> <li><a href="https://github.com/dtolnay/syn/commit/afbee2e19fc1b3c45e5fea15125151f8cda8998c"><code>afbee2e</code></a> Point standard library links to stable</li> <li><a href="https://github.com/dtolnay/syn/commit/fdbed64e79ba98800895bc0814f97099030d9753"><code>fdbed64</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/syn/issues/1848">#1848</a> from findepi/findepi/remove-obsolete-clippy-suppress...</li> <li><a href="https://github.com/dtolnay/syn/commit/88f08200fdf4c585e4d4f8a28915e6ef38253c83"><code>88f0820</code></a> Remove obsolete clippy suppressions</li> <li><a href="https://github.com/dtolnay/syn/commit/5357d5422d1e2db557fddb4eaa01e498b68ef01d"><code>5357d54</code></a> Update test suite to nightly-2025-02-13</li> <li><a href="https://github.com/dtolnay/syn/commit/5cffd62d9481737d2eee9c7b1a070b77b7a9e290"><code>5cffd62</code></a> Update color-backtrace dependency to 0.7</li> <li><a href="https://github.com/dtolnay/syn/commit/076ac952a2a4e7046a2076ecbdcadd384e021cb6"><code>076ac95</code></a> Unset doc-scrape-examples for lib target</li> <li><a href="https://github.com/dtolnay/syn/commit/af12bdaecf32e62c4a2bfab29e372250ccc46591"><code>af12bda</code></a> Ignore format_push_string pedantic clippy lint</li> <li><a href="https://github.com/dtolnay/syn/commit/f3614ce8f4006cd62d0c98dbeb03b3a6bc16e990"><code>f3614ce</code></a> Update test suite to nightly-2025-02-07</li> <li>Additional commits viewable in <a href="https://github.com/dtolnay/syn/compare/2.0.98...2.0.99">compare view</a></li> </ul> </details> <br /> Updates `thiserror` from 2.0.11 to 2.0.12 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/thiserror/releases">thiserror's releases</a>.</em></p> <blockquote> <h2>2.0.12</h2> <ul> <li>Prevent elidable_lifetime_names pedantic clippy lint in generated impl (<a href="https://redirect.github.com/dtolnay/thiserror/issues/413">#413</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/thiserror/commit/95a512669395f30cf9ae10343149726c0563ed76"><code>95a5126</code></a> Release 2.0.12</li> <li><a href="https://github.com/dtolnay/thiserror/commit/76490f743e26553275f32d23087deb5bbff22b06"><code>76490f7</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/thiserror/issues/413">#413</a> from dtolnay/elidablelifetime</li> <li><a href="https://github.com/dtolnay/thiserror/commit/9f27b766f57f7e3111e6930f7928f4358a95e590"><code>9f27b76</code></a> Ignore elidable_lifetime_names pedantic clippy lint</li> <li><a href="https://github.com/dtolnay/thiserror/commit/daf2a6f36eb0f94214003e6cdae70134a69292c5"><code>daf2a6f</code></a> Resolve some elidable_lifetime_names pedantic clippy lint</li> <li><a href="https://github.com/dtolnay/thiserror/commit/5f07160c352f4913d5ff857954c358f0a0419893"><code>5f07160</code></a> Point standard library links to stable</li> <li><a href="https://github.com/dtolnay/thiserror/commit/6706a5121ba011432e6dc666e6ec461128f49aef"><code>6706a51</code></a> Convert html links to intra-doc links</li> <li><a href="https://github.com/dtolnay/thiserror/commit/2706873a04a9eec85bf8aa8f83ab4367bd5ff388"><code>2706873</code></a> More precise gitignore patterns</li> <li><a href="https://github.com/dtolnay/thiserror/commit/70bc20d8483aed1567324c8ece7c9d0d42a8ddf2"><code>70bc20d</code></a> Remove **/*.rs.bk from project-specific gitignore</li> <li>See full diff in <a href="https://github.com/dtolnay/thiserror/compare/2.0.11...2.0.12">compare view</a></li> </ul> </details> <br /> Updates `uuid` from 1.14.0 to 1.15.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.15.1</h2> <h2>What's Changed</h2> <ul> <li>Guarantee v7 timestamp will never overflow by <a href="https://github.com/KodrAus"><code>@​KodrAus</code></a> in <a href="https://redirect.github.com/uuid-rs/uuid/pull/811">uuid-rs/uuid#811</a></li> <li>Prepare for 1.15.1 release by <a href="https://github.com/KodrAus"><code>@​KodrAus</code></a> in <a href="https://redirect.github.com/uuid-rs/uuid/pull/812">uuid-rs/uuid#812</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/uuid-rs/uuid/compare/v1.15.0...v1.15.1">https://github.com/uuid-rs/uuid/compare/v1.15.0...v1.15.1</a></p> <h2>v1.15.0</h2> <h2>What's Changed</h2> <ul> <li>Add a manual <code>Debug</code> implementation for NonNilUUid by <a href="https://github.com/rick-de-water"><code>@​rick-de-water</code></a> in <a href="https://redirect.github.com/uuid-rs/uuid/pull/808">uuid-rs/uuid#808</a></li> <li>Support higher precision, shiftable timestamps in V7 UUIDs by <a href="https://github.com/KodrAus"><code>@​KodrAus</code></a> in <a href="https://redirect.github.com/uuid-rs/uuid/pull/809">uuid-rs/uuid#809</a></li> <li>Prepare for 1.15.0 release by <a href="https://github.com/KodrAus"><code>@​KodrAus</code></a> in <a href="https://redirect.github.com/uuid-rs/uuid/pull/810">uuid-rs/uuid#810</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/rick-de-water"><code>@​rick-de-water</code></a> made their first contribution in <a href="https://redirect.github.com/uuid-rs/uuid/pull/808">uuid-rs/uuid#808</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/uuid-rs/uuid/compare/v1.14.0...v1.15.0">https://github.com/uuid-rs/uuid/compare/v1.14.0...v1.15.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/uuid-rs/uuid/commit/4e5b88e7af12f06ea526088506752c450dc991e3"><code>4e5b88e</code></a> Merge pull request <a href="https://redirect.github.com/uuid-rs/uuid/issues/812">#812</a> from uuid-rs/cargo/v1.15.1</li> <li><a href="https://github.com/uuid-rs/uuid/commit/7fb64f78c745fe46e209f0f5a50883b711e25f04"><code>7fb64f7</code></a> prepare for 1.15.1 release</li> <li><a href="https://github.com/uuid-rs/uuid/commit/f05b6df98e8d521eecc80dc7923c9b38e2dff634"><code>f05b6df</code></a> Merge pull request <a href="https://redirect.github.com/uuid-rs/uuid/issues/811">#811</a> from uuid-rs/fix/v7-overflow</li> <li><a href="https://github.com/uuid-rs/uuid/commit/c2d313fbbb3157c186f0511c9e2a914d174f258f"><code>c2d313f</code></a> guarantee v7 timestamp will never overflow</li> <li><a href="https://github.com/uuid-rs/uuid/commit/56ba68ff13983f3917263b86e06a81c00ee97a3d"><code>56ba68f</code></a> Merge pull request <a href="https://redirect.github.com/uuid-rs/uuid/issues/810">#810</a> from uuid-rs/cargo/v1.15.0</li> <li><a href="https://github.com/uuid-rs/uuid/commit/26c8a9bebcdfe6f47ce6e88fa8da21326ab8ee25"><code>26c8a9b</code></a> prepare for 1.15.0 release</li> <li><a href="https://github.com/uuid-rs/uuid/commit/e468f99f936875263f9b78967f81fd431afcc510"><code>e468f99</code></a> Merge pull request <a href="https://redirect.github.com/uuid-rs/uuid/issues/809">#809</a> from uuid-rs/feat/v7-precision</li> <li><a href="https://github.com/uuid-rs/uuid/commit/c46f4e089d474b7c5890594d71054cf6771a9cd7"><code>c46f4e0</code></a> add bench for additional precision v7</li> <li><a href="https://github.com/uuid-rs/uuid/commit/6c4597ca0f21623781df67bb84045b8d0873f777"><code>6c4597c</code></a> document extra precision behavior</li> <li><a href="https://github.com/uuid-rs/uuid/commit/295593ae7758d3b7fd4dd375072e721eeb67971b"><code>295593a</code></a> ensure sub-millisecond precision fits into the requested number of bits</li> <li>Additional commits viewable in <a href="https://github.com/uuid-rs/uuid/compare/v1.14.0...v1.15.1">compare view</a></li> </ul> </details> <br /> Updates `bytemuck` from 1.21.0 to 1.22.0 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/Lokathor/bytemuck/blob/main/changelog.md">bytemuck's changelog</a>.</em></p> <blockquote> <h1><code>bytemuck</code> changelog</h1> <h2>1.22</h2> <ul> <li>Add the <code>pod_saturating</code> feature, which adds <code>Pod</code> impls for <code>Saturating&lt;T&gt;</code> when <code>T</code> is already <code>Pod</code>.</li> <li>A bump in the minimum <code>bytemuck_derive</code> dependency from 1.4.0 to 1.4.1 to avoid a bug if you have a truly ancient <code>cargo.lock</code> file sitting around.</li> <li>Adds <code>Send</code> and <code>Sync</code> impls to <code>BoxBytes</code>.</li> </ul> <h2>1.21</h2> <ul> <li>Implement <code>Pod</code> and <code>Zeroable</code> for <code>core::arch::{x86, x86_64}::__m512</code>, <code>__m512d</code> and <code>__m512i</code> without nightly. Requires Rust 1.72, and is gated through the <code>avx512_simd</code> cargo feature.</li> <li>Allow the use of <code>must_cast_mut</code> and <code>must_cast_slice_mut</code> in const contexts. Requires Rust 1.83, and is gated through the <code>must_cast_extra</code> cargo feature.</li> <li>internal: introduced the <code>maybe_const_fn</code> macro that allows defining some function to be const depending upon some <code>cfg</code> predicate.</li> </ul> <h2>1.20</h2> <ul> <li>New functions to allocate zeroed <code>Arc</code> and <code>Rc</code>. Requires Rust 1.82</li> <li><code>TransparentWrapper</code> impls for <code>core::cmp::Reverse</code> and <code>core::num::Saturating</code>.</li> <li>internal: Simplified the library's <code>fill_zeroes</code> calls to <code>write_bytes</code></li> </ul> <h2>1.19</h2> <ul> <li>Adds the <code>#[track_caller]</code> attribute to functions which may panic.</li> </ul> <h2>1.18</h2> <ul> <li>Adds the <code>latest_stable_rust</code> cargo feature, which is a blanket feature that turns all other features on that are both sound and compatible with Stable rust.</li> </ul> <h2>1.17.1</h2> <ul> <li>Adds <code>#[repr(C)]</code> to the <code>union Transmute&lt;A, B&gt;</code> type that's used internally for most of the transmutations.</li> </ul> <h2>1.17.0</h2> <ul> <li>Makes the <code>must_cast</code> versions of the by-value and by-ref casts be <code>const</code>. The mut ref cast is unaffected for now (mut references aren't yet stable in <code>const fn</code>). This increases the MSRV of using that particular feature from 1.57 to 1.64.</li> </ul> <h2>1.16.3</h2> <ul> <li>Fully described in <a href="https://redirect.github.com/Lokathor/bytemuck/pull/256">Lokathor/bytemuck#256</a>, This makes casting slices to/from ZST elements more consistent between the crate's core module and other modules.</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/Lokathor/bytemuck/commit/d1d918b2879c62fa946a9534ab8ee0760106b0fa"><code>d1d918b</code></a> chore: Release bytemuck version 1.22.0</li> <li><a href="https://github.com/Lokathor/bytemuck/commit/f48810fa3b21af14eb09fe37606ecdf1320e7f89"><code>f48810f</code></a> changelog.</li> <li><a href="https://github.com/Lokathor/bytemuck/commit/ee2f71f255b12304d83b721efa4e4f450e8f1719"><code>ee2f71f</code></a> Add <code>pod_saturating</code> feature (<a href="https://redirect.github.com/Lokathor/bytemuck/issues/303">#303</a>)</li> <li><a href="https://github.com/Lokathor/bytemuck/commit/e02369556fd7166fe227146fb93a056883a6544d"><code>e023695</code></a> bump bytemuck_derive dependency to &gt;= 1.4.1 (<a href="https://redirect.github.com/Lokathor/bytemuck/issues/301">#301</a>)</li> <li><a href="https://github.com/Lokathor/bytemuck/commit/9ec593db1dadcf0c3d0d34caa5128174d38b07e1"><code>9ec593d</code></a> Implement Send and Sync for BoxBytes. (<a href="https://redirect.github.com/Lokathor/bytemuck/issues/299">#299</a>)</li> <li><a href="https://github.com/Lokathor/bytemuck/commit/1f6afb3b15c293c996f9fa2da86d3243eac45a14"><code>1f6afb3</code></a> Add a <code>pack1</code> as a related crate for packed integers etc. (<a href="https://redirect.github.com/Lokathor/bytemuck/issues/296">#296</a>)</li> <li><a href="https://github.com/Lokathor/bytemuck/commit/c254af30fcb57ca21269963b129f42574924f7c5"><code>c254af3</code></a> chore: Release bytemuck_derive version 1.9.0</li> <li><a href="https://github.com/Lokathor/bytemuck/commit/417e98919ea626b633d189b37ec8d5bef6352354"><code>417e989</code></a> fix changelog which cargo-release goofed because crates.io goofed.</li> <li><a href="https://github.com/Lokathor/bytemuck/commit/d6cd76c5824c0c15dc036ac2fa2156c152f4f623"><code>d6cd76c</code></a> chore: Release bytemuck_derive version 1.9.0</li> <li><a href="https://github.com/Lokathor/bytemuck/commit/95db6e1d85e46c893e92466c25c6e745113a9698"><code>95db6e1</code></a> changelog</li> <li>Additional commits viewable in <a href="https://github.com/Lokathor/bytemuck/compare/v1.21.0...v1.22.0">compare view</a></li> </ul> </details> <br /> Updates `flecs_ecs` from `6c82ffa` to `a8be639` <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/Indra-db/Flecs-Rust/commit/a8be639fdab00e871b3f42a95a6cf1dce0f81db8"><code>a8be639</code></a> chore(deps): Update <code>compact_str</code> and <code>ctor</code> deps (<a href="https://redirect.github.com/Indra-db/Flecs-Rust/issues/240">#240</a>)</li> <li><a href="https://github.com/Indra-db/Flecs-Rust/commit/b657b4a46023876d74629cf2791c69758cfddff0"><code>b657b4a</code></a> fix(clippy system!): add clippy allow on system! doc comment</li> <li>See full diff in <a href="https://github.com/Indra-db/Flecs-Rust/compare/6c82ffa86d3c861bef92a5f234bd673a9652be9a...a8be639fdab00e871b3f42a95a6cf1dce0f81db8">compare view</a></li> </ul> </details> <br /> Updates `valence_anvil` from `3b8aa56` to `7c66471` <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/andrewgazelka/valence/commit/7c664716cd1e7b30de4e38cfc0ee8d1ecc7b0bd5"><code>7c66471</code></a> Merge pull request <a href="https://redirect.github.com/andrewgazelka/valence/issues/1">#1</a> from GroobleDierne/extractor</li> <li><a href="https://github.com/andrewgazelka/valence/commit/9fef18ad37f49cc6b24b750850697661a7da413f"><code>9fef18a</code></a> Add blocks physics properties</li> <li><a href="https://github.com/andrewgazelka/valence/commit/c0342ed326a081b6d5322673084d18629f5561a9"><code>c0342ed</code></a> Change EquipmentSlot enum</li> <li><a href="https://github.com/andrewgazelka/valence/commit/5a41c567a135e97e24b0b0dfe9df3e6e463614b0"><code>5a41c56</code></a> Add equippable to ItemKind</li> <li><a href="https://github.com/andrewgazelka/valence/commit/fbaeb0bda4c84cb3955bc312f2d06d04c4f4c023"><code>fbaeb0b</code></a> Add blast_resistance to BlockKind</li> <li><a href="https://github.com/andrewgazelka/valence/commit/4d298b6dd42bed1ccb99f16136dd7d16c1e29721"><code>4d298b6</code></a> Add hardness to BlockKind</li> <li>See full diff in <a href="https://github.com/andrewgazelka/valence/compare/3b8aa5628a5c706459a241b3d17ceca563cc7473...7c664716cd1e7b30de4e38cfc0ee8d1ecc7b0bd5">compare view</a></li> </ul> </details> <br /> Updates `valence_build_utils` from `3b8aa56` to `7c66471` <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/andrewgazelka/valence/commit/7c664716cd1e7b30de4e38cfc0ee8d1ecc7b0bd5"><code>7c66471</code></a> Merge pull request <a href="https://redirect.github.com/andrewgazelka/valence/issues/1">#1</a> from GroobleDierne/extractor</li> <li><a href="https://github.com/andrewgazelka/valence/commit/9fef18ad37f49cc6b24b750850697661a7da413f"><code>9fef18a</code></a> Add blocks physics properties</li> <li><a href="https://github.com/andrewgazelka/valence/commit/c0342ed326a081b6d5322673084d18629f5561a9"><code>c0342ed</code></a> Change EquipmentSlot enum</li> <li><a href="https://github.com/andrewgazelka/valence/commit/5a41c567a135e97e24b0b0dfe9df3e6e463614b0"><code>5a41c56</code></a> Add equippable to ItemKind</li> <li><a href="https://github.com/andrewgazelka/valence/commit/fbaeb0bda4c84cb3955bc312f2d06d04c4f4c023"><code>fbaeb0b</code></a> Add blast_resistance to BlockKind</li> <li><a href="https://github.com/andrewgazelka/valence/commit/4d298b6dd42bed1ccb99f16136dd7d16c1e29721"><code>4d298b6</code></a> Add hardness to BlockKind</li> <li>See full diff in <a href="https://github.com/andrewgazelka/valence/compare/3b8aa5628a5c706459a241b3d17ceca563cc7473...7c664716cd1e7b30de4e38cfc0ee8d1ecc7b0bd5">compare view</a></li> </ul> </details> <br /> Updates `valence_generated` from `3b8aa56` to `7c66471` <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/andrewgazelka/valence/commit/7c664716cd1e7b30de4e38cfc0ee8d1ecc7b0bd5"><code>7c66471</code></a> Merge pull request <a href="https://redirect.github.com/andrewgazelka/valence/issues/1">#1</a> from GroobleDierne/extractor</li> <li><a href="https://github.com/andrewgazelka/valence/commit/9fef18ad37f49cc6b24b750850697661a7da413f"><code>9fef18a</code></a> Add blocks physics properties</li> <li><a href="https://github.com/andrewgazelka/valence/commit/c0342ed326a081b6d5322673084d18629f5561a9"><code>c0342ed</code></a> Change EquipmentSlot enum</li> <li><a href="https://github.com/andrewgazelka/valence/commit/5a41c567a135e97e24b0b0dfe9df3e6e463614b0"><code>5a41c56</code></a> Add equippable to ItemKind</li> <li><a href="https://github.com/andrewgazelka/valence/commit/fbaeb0bda4c84cb3955bc312f2d06d04c4f4c023"><code>fbaeb0b</code></a> Add blast_resistance to BlockKind</li> <li><a href="https://github.com/andrewgazelka/valence/commit/4d298b6dd42bed1ccb99f16136dd7d16c1e29721"><code>4d298b6</code></a> Add hardness to BlockKind</li> <li>See full diff in <a href="https://github.com/andrewgazelka/valence/compare/3b8aa5628a5c706459a241b3d17ceca563cc7473...7c664716cd1e7b30de4e38cfc0ee8d1ecc7b0bd5">compare view</a></li> </ul> </details> <br /> Updates `valence_ident` from `3b8aa56` to `7c66471` <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/andrewgazelka/valence/commit/7c664716cd1e7b30de4e38cfc0ee8d1ecc7b0bd5"><code>7c66471</code></a> Merge pull request <a href="https://redirect.github.com/andrewgazelka/valence/issues/1">#1</a> from GroobleDierne/extractor</li> <li><a href="https://github.com/andrewgazelka/valence/commit/9fef18ad37f49cc6b24b750850697661a7da413f"><code>9fef18a</code></a> Add blocks physics properties</li> <li><a href="https://github.com/andrewgazelka/valence/commit/c0342ed326a081b6d5322673084d18629f5561a9"><code>c0342ed</code></a> Change EquipmentSlot enum</li> <li><a href="https://github.com/andrewgazelka/valence/commit/5a41c567a135e97e24b0b0dfe9df3e6e463614b0"><code>5a41c56</code></a> Add equippable to ItemKind</li> <li><a href="https://github.com/andrewgazelka/valence/commit/fbaeb0bda4c84cb3955bc312f2d06d04c4f4c023"><code>fbaeb0b</code></a> Add blast_resistance to BlockKind</li> <li><a href="https://github.com/andrewgazelka/valence/commit/4d298b6dd42bed1ccb99f16136dd7d16c1e29721"><code>4d298b6</code></a> Add hardness to BlockKind</li> <li>See full diff in <a href="https://github.com/andrewgazelka/valence/compare/3b8aa5628a5c706459a241b3d17ceca563cc7473...7c664716cd1e7b30de4e38cfc0ee8d1ecc7b0bd5">compare view</a></li> </ul> </details> <br /> Updates `valence_nbt` from `3b8aa56` to `7c66471` <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/andrewgazelka/valence/commit/7c664716cd1e7b30de4e38cfc0ee8d1ecc7b0bd5"><code>7c66471</code></a> Merge pull request <a href="https://redirect.github.com/andrewgazelka/valence/issues/1">#1</a> from GroobleDierne/extractor</li> <li><a href="https://github.com/andrewgazelka/valence/commit/9fef18ad37f49cc6b24b750850697661a7da413f"><code>9fef18a</code></a> Add blocks physics properties</li> <li><a href="https://github.com/andrewgazelka/valence/commit/c0342ed326a081b6d5322673084d18629f5561a9"><code>c0342ed</code></a> Change EquipmentSlot enum</li> <li><a href="https://github.com/andrewgazelka/valence/commit/5a41c567a135e97e24b0b0dfe9df3e6e463614b0"><code>5a41c56</code></a> Add equippable to ItemKind</li> <li><a href="https://github.com/andrewgazelka/valence/commit/fbaeb0bda4c84cb3955bc312f2d06d04c4f4c023"><code>fbaeb0b</code></a> Add blast_resistance to BlockKind</li> <li><a href="https://github.com/andrewgazelka/valence/commit/4d298b6dd42bed1ccb99f16136dd7d16c1e29721"><code>4d298b6</code></a> Add hardness to BlockKind</li> <li>See full diff in <a href="https://github.com/andrewgazelka/valence/compare/3b8aa5628a5c706459a241b3d17ceca563cc7473...7c664716cd1e7b30de4e38cfc0ee8d1ecc7b0bd5">compare view</a></li> </ul> </details> <br /> Updates `valence_protocol` from `3b8aa56` to `7c66471` <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/andrewgazelka/valence/commit/7c664716cd1e7b30de4e38cfc0ee8d1ecc7b0bd5"><code>7c66471</code></a> Merge pull request <a href="https://redirect.github.com/andrewgazelka/valence/issues/1">#1</a> from GroobleDierne/extractor</li> <li><a href="https://github.com/andrewgazelka/valence/commit/9fef18ad37f49cc6b24b750850697661a7da413f"><code>9fef18a</code></a> Add blocks physics properties</li> <li><a href="https://github.com/andrewgazelka/valence/commit/c0342ed326a081b6d5322673084d18629f5561a9"><code>c0342ed</code></a> Change EquipmentSlot enum</li> <li><a href="https://github.com/andrewgazelka/valence/commit/5a41c567a135e97e24b0b0dfe9df3e6e463614b0"><code>5a41c56</code></a> Add equippable to ItemKind</li> <li><a href="https://github.com/andrewgazelka/valence/commit/fbaeb0bda4c84cb3955bc312f2d06d04c4f4c023"><code>fbaeb0b</code></a> Add blast_resistance to BlockKind</li> <li><a href="https://github.com/andrewgazelka/valence/commit/4d298b6dd42bed1ccb99f16136dd7d16c1e29721"><code>4d298b6</code></a> Add hardness to BlockKind</li> <li>See full diff in <a href="https://github.com/andrewgazelka/valence/compare/3b8aa5628a5c706459a241b3d17ceca563cc7473...7c664716cd1e7b30de4e38cfc0ee8d1ecc7b0bd5">compare view</a></li> </ul> </details> <br /> Updates `valence_registry` from `3b8aa56` to `7c66471` <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/andrewgazelka/valence/commit/7c664716cd1e7b30de4e38cfc0ee8d1ecc7b0bd5"><code>7c66471</code></a> Merge pull request <a href="https://redirect.github.com/andrewgazelka/valence/issues/1">#1</a> from GroobleDierne/extractor</li> <li><a href="https://github.com/andrewgazelka/valence/commit/9fef18ad37f49cc6b24b750850697661a7da413f"><code>9fef18a</code></a> Add blocks physics properties</li> <li><a href="https://github.com/andrewgazelka/valence/commit/c0342ed326a081b6d5322673084d18629f5561a9"><code>c0342ed</code></a> Change EquipmentSlot enum</li> <li><a href="https://github.com/andrewgazelka/valence/commit/5a41c567a135e97e24b0b0dfe9df3e6e463614b0"><code>5a41c56</code></a> Add equippable to ItemKind</li> <li><a href="https://github.com/andrewgazelka/valence/commit/fbaeb0bda4c84cb3955bc312f2d06d04c4f4c023"><code>fbaeb0b</code></a> Add blast_resistance to BlockKind</li> <li><a href="https://github.com/andrewgazelka/valence/commit/4d298b6dd42bed1ccb99f16136dd7d16c1e29721"><code>4d298b6</code></a> Add hardness to BlockKind</li> <li>See full diff in <a href="https://github.com/andrewgazelka/valence/compare/3b8aa5628a5c706459a241b3d17ceca563cc7473...7c664716cd1e7b30de4e38cfc0ee8d1ecc7b0bd5">compare view</a></li> </ul> </details> <br /> Updates `valence_server` from `3b8aa56` to `7c66471` <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/andrewgazelka/valence/commit/7c664716cd1e7b30de4e38cfc0ee8d1ecc7b0bd5"><code>7c66471</code></a> Merge pull request <a href="https://redirect.github.com/andrewgazelka/valence/issues/1">#1</a> from GroobleDierne/extractor</li> <li><a href="https://github.com/andrewgazelka/valence/commit/9fef18ad37f49cc6b24b750850697661a7da413f"><code>9fef18a</code></a> Add blocks physics properties</li> <li><a href="https://github.com/andrewgazelka/valence/commit/c0342ed326a081b6d5322673084d18629f5561a9"><code>c0342ed</code></a> Change EquipmentSlot enum</li> <li><a href="https://github.com/andrewgazelka/valence/commit/5a41c567a135e97e24b0b0dfe9df3e6e463614b0"><code>5a41c56</code></a> Add equippable to ItemKind</li> <li><a href="https://github.com/andrewgazelka/valence/commit/fbaeb0bda4c84cb3955bc312f2d06d04c4f4c023"><code>fbaeb0b</code></a> Add blast_resistance to BlockKind</li> <li><a href="https://github.com/andrewgazelka/valence/commit/4d298b6dd42bed1ccb99f16136dd7d16c1e29721"><code>4d298b6</code></a> Add hardness to BlockKind</li> <li>See full diff in <a href="https://github.com/andrewgazelka/valence/compare/3b8aa5628a5c706459a241b3d17ceca563cc7473...7c664716cd1e7b30de4e38cfc0ee8d1ecc7b0bd5">compare view</a></li> </ul> </details> <br /> Updates `valence_text` from `3b8aa56` to `7c66471` <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/andrewgazelka/valence/commit/7c664716cd1e7b30de4e38cfc0ee8d1ecc7b0bd5"><code>7c66471</code></a> Merge pull request <a href="https://redirect.github.com/andrewgazelka/valence/issues/1">#1</a> from GroobleDierne/extractor</li> <li><a href="https://github.com/andrewgazelka/valence/commit/9fef18ad37f49cc6b24b750850697661a7da413f"><code>9fef18a</code></a> Add blocks physics properties</li> <li><a href="https://github.com/andrewgazelka/valence/commit/c0342ed326a081b6d5322673084d18629f5561a9"><code>c0342ed</code></a> Change EquipmentSlot enum</li> <li><a href="https://github.com/andrewgazelka/valence/commit/5a41c567a135e97e24b0b0dfe9df3e6e463614b0"><code>5a41c56</code></a> Add equippable to ItemKind</li> <li><a href="https://github.com/andrewgazelka/valence/commit/fbaeb0bda4c84cb3955bc312f2d06d04c4f4c023"><code>fbaeb0b</code></a> Add blast_resistance to BlockKind</li> <li><a href="https://github.com/andrewgazelka/valence/commit/4d298b6dd42bed1ccb99f16136dd7d16c1e29721"><code>4d298b6</code></a> Add hardness to BlockKind</li> <li>See full diff in <a href="https://github.com/andrewgazelka/valence/compare/3b8aa5628a5c706459a241b3d17ceca563cc7473...7c664716cd1e7b30de4e38cfc0ee8d1ecc7b0bd5">compare view</a></li> </ul> </details> <br /> Updates `aligned-vec` from 0.6.1 to 0.6.2 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/sarah-ek/aligned-vec/commits/v0.6.2">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 <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent b89b083 commit b427410

File tree

4 files changed

+83
-69
lines changed

4 files changed

+83
-69
lines changed

0 commit comments

Comments
 (0)