dependabot[bot] opened a new pull request, #2662: URL: https://github.com/apache/iggy/pull/2662
Bumps the minor-and-patch group with 9 updates: | Package | From | To | | --- | --- | --- | | [bytemuck](https://github.com/Lokathor/bytemuck) | `1.24.0` | `1.25.0` | | [clap](https://github.com/clap-rs/clap) | `4.5.54` | `4.5.56` | | [file-operation](https://github.com/crates-dev/file-operation) | `0.8.17` | `0.8.18` | | [git2](https://github.com/rust-lang/git2-rs) | `0.20.3` | `0.20.4` | | [jsonwebtoken](https://github.com/Keats/jsonwebtoken) | `10.2.0` | `10.3.0` | | [passterm](https://github.com/finfet/passterm) | `2.0.1` | `2.0.6` | | [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.105` | `1.0.106` | | [quote](https://github.com/dtolnay/quote) | `1.0.43` | `1.0.44` | | [slab](https://github.com/tokio-rs/slab) | `0.4.11` | `0.4.12` | Updates `bytemuck` from 1.24.0 to 1.25.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.25</h2> <ul> <li><a href="https://redirect.github.com/Lokathor/bytemuck/pull/333">Remove extern "stdcall" fn ptr impls on non-x86-32 windows.</a></li> <li><a href="https://redirect.github.com/Lokathor/bytemuck/pull/344">Fix nightly_portable_simd after LaneCount removal.</a></li> </ul> <h2>1.24</h2> <ul> <li><a href="https://redirect.github.com/Lokathor/bytemuck/pull/322">use new stable avx512 types from rust 1.89</a></li> <li><a href="https://redirect.github.com/Lokathor/bytemuck/pull/317">impl AnyBitPattern for [MaybeUninit<T: AnyBitPattern>; N]</a></li> <li>bump <code>derive</code> minimum version.</li> </ul> <h2>1.23.2</h2> <ul> <li>bump <code>derive</code> minimum version.</li> </ul> <h2>1.23.1</h2> <ul> <li>Added a windows-only <code>ZeroableInOption</code> impl for "stdcall" functions.</li> </ul> <h2>1.23</h2> <ul> <li><code>impl_core_error</code> crate feature adds <code>core::error::Error</code> impl.</li> <li>More <code>ZeroableInOption</code> impls.</li> </ul> <h2>1.22</h2> <ul> <li>Add the <code>pod_saturating</code> feature, which adds <code>Pod</code> impls for <code>Saturating<T></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> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/Lokathor/bytemuck/commit/164cedda0eae131bc6cb67902599f4ec253642ca"><code>164cedd</code></a> chore: Release bytemuck version 1.25.0</li> <li><a href="https://github.com/Lokathor/bytemuck/commit/10a9319fa47c8161fdb359c936ab03e1b69adf72"><code>10a9319</code></a> that was a derive PR</li> <li><a href="https://github.com/Lokathor/bytemuck/commit/a35eaea74a81e0562b583d65c727f7246e0b8600"><code>a35eaea</code></a> changelog</li> <li><a href="https://github.com/Lokathor/bytemuck/commit/7009d79870508b50dff8166255761dae5ddcb6ae"><code>7009d79</code></a> Fix <code>nightly_portable_simd</code> after <code>LaneCount</code> removal. (<a href="https://redirect.github.com/Lokathor/bytemuck/issues/344">#344</a>)</li> <li><a href="https://github.com/Lokathor/bytemuck/commit/58c62034e9059a2cab5cfb40d45cc45acd3a4d5c"><code>58c6203</code></a> Make derive(NoUninit) have the same constraints as Pod (<a href="https://redirect.github.com/Lokathor/bytemuck/issues/341">#341</a>)</li> <li><a href="https://github.com/Lokathor/bytemuck/commit/e4bce3b32c33888c99d1fb1b5ff66f2a03a92f56"><code>e4bce3b</code></a> docs: fix typo (<a href="https://redirect.github.com/Lokathor/bytemuck/issues/337">#337</a>)</li> <li><a href="https://github.com/Lokathor/bytemuck/commit/316607cdf1ecd4e2b56e736128b86e5d9ba5f447"><code>316607c</code></a> Fix CheckedBitPattern derive tests on big-endian (<a href="https://redirect.github.com/Lokathor/bytemuck/issues/336">#336</a>)</li> <li><a href="https://github.com/Lokathor/bytemuck/commit/92d78d2689ea60cd758fbdecd28cb9e50b4dd5f4"><code>92d78d2</code></a> Remove <code>extern "stdcall"</code> fn ptr impls on non-x86-32 windows. (<a href="https://redirect.github.com/Lokathor/bytemuck/issues/333">#333</a>)</li> <li><a href="https://github.com/Lokathor/bytemuck/commit/0afbe8fc2db3d2d540e2a5449ffd39e3e39bc08e"><code>0afbe8f</code></a> Fix 32bit tests (<a href="https://redirect.github.com/Lokathor/bytemuck/issues/331">#331</a>)</li> <li>See full diff in <a href="https://github.com/Lokathor/bytemuck/compare/v1.24.0...v1.25.0">compare view</a></li> </ul> </details> <br /> Updates `clap` from 4.5.54 to 4.5.56 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/releases">clap's releases</a>.</em></p> <blockquote> <h2>v4.5.56</h2> <h2>[4.5.56] - 2026-01-29</h2> <h3>Fixes</h3> <ul> <li>On conflict error, don't show conflicting arguments in the usage</li> </ul> <h2>v4.5.55</h2> <h2>[4.5.55] - 2026-01-27</h2> <h3>Fixes</h3> <ul> <li>Fix inconsistency in precedence between positionals with a <code>value_terminator("--")</code> and escapes (<code>--</code>) where <code>./foo -- bar</code> means the first arg is empty, rather than escaping future args</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's changelog</a>.</em></p> <blockquote> <h2>[4.5.56] - 2026-01-29</h2> <h3>Fixes</h3> <ul> <li>On conflict error, don't show conflicting arguments in the usage</li> </ul> <h2>[4.5.55] - 2026-01-27</h2> <h3>Fixes</h3> <ul> <li>Fix inconsistency in precedence between positionals with a <code>value_terminator("--")</code> and escapes (<code>--</code>) where <code>./foo -- bar</code> means the first arg is empty, rather than escaping future args</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/9cec1007acdc3cd990feded4322a4bccd2fd471c"><code>9cec100</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/00e72e06f46e2c21e5bb4dd82aa5fca02a9e5c16"><code>00e72e0</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/c7848ff6fc3f8e0f7b66eaee10d44b43eea54538"><code>c7848ff</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/6094">#6094</a> from epage/home</li> <li><a href="https://github.com/clap-rs/clap/commit/60184fb76a3d88277f89430402d01a121feb858c"><code>60184fb</code></a> feat(complete): Expand ~ in native completions</li> <li><a href="https://github.com/clap-rs/clap/commit/09969d3c1af9dd22fb944c09f8b1c27274cad824"><code>09969d3</code></a> chore(deps): Update Rust Stable to v1.89 (<a href="https://redirect.github.com/clap-rs/clap/issues/6093">#6093</a>)</li> <li><a href="https://github.com/clap-rs/clap/commit/520beb5ec2d2bb5dd11912d27127df4e97027965"><code>520beb5</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/2bd8ab3c009fc975db28209c3c3fb526364342ae"><code>2bd8ab3</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/220875b58511028ba9cd38f7195b8b3315b72d0d"><code>220875b</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/6091">#6091</a> from epage/possible</li> <li><a href="https://github.com/clap-rs/clap/commit/e5eb6c9d84efac5d660322e92dbbc0158266602d"><code>e5eb6c9</code></a> fix(help): Integrate 'Possible Values:' into 'Arg::help'</li> <li><a href="https://github.com/clap-rs/clap/commit/594a771030e43df8c806ea1a029862339739a0f3"><code>594a771</code></a> refactor(help): Make empty tracking more consistent</li> <li>Additional commits viewable in <a href="https://github.com/clap-rs/clap/compare/clap_complete-v4.5.54...clap_complete-v4.5.56">compare view</a></li> </ul> </details> <br /> Updates `file-operation` from 0.8.17 to 0.8.18 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/crates-dev/file-operation/releases">file-operation's releases</a>.</em></p> <blockquote> <h2>v0.8.18 (Created 2026-02-01 01:42:40)</h2> <p>Release v0.8.18 - Created at 2026-02-01 01:42:40 UTC</p> <h2>Changes</h2> <ul> <li>Version: 0.8.18</li> <li>Package: file-operation</li> </ul> <h2>Links</h2> <p>📦 <a href="https://crates.io/crates/file-operation/0.8.18">Crate on crates.io</a> 📚 <a href="https://docs.rs/file-operation/0.8.18">Documentation on docs.rs</a> 📋 <a href="https://github.com/crates-dev/file-operation/commits/v0.8.18">Commit History</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/crates-dev/file-operation/commit/1185eaddf7924799384041b005ccb27df62c6362"><code>1185ead</code></a> feat: v0.8.18</li> <li>See full diff in <a href="https://github.com/crates-dev/file-operation/compare/v0.8.17...v0.8.18">compare view</a></li> </ul> </details> <br /> Updates `git2` from 0.20.3 to 0.20.4 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/git2-rs/blob/git2-0.20.4/CHANGELOG.md">git2's changelog</a>.</em></p> <blockquote> <h2>0.20.4 - 2026-02-02</h2> <p><a href="https://github.com/rust-lang/git2-rs/compare/git2-0.20.3...git2-0.20.4">0.20.3...0.20.4</a></p> <h3>Fixed</h3> <ul> <li>Fix undefined behavior when dereferencing empty <code>Buf</code>. <a href="https://redirect.github.com/rust-lang/git2-rs/pull/1213">#1213</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rust-lang/git2-rs/commit/8852d7dabd38d0df6d4524e04a1c2ee520ac7203"><code>8852d7d</code></a> Merge pull request <a href="https://redirect.github.com/rust-lang/git2-rs/issues/1214">#1214</a> from weihanglo/backport-from-raw-parts</li> <li><a href="https://github.com/rust-lang/git2-rs/commit/0b274f76f70f717c3bda4be1f79ba8e1cb11afd4"><code>0b274f7</code></a> Bump to 0.20.4</li> <li><a href="https://github.com/rust-lang/git2-rs/commit/73a5d5d7c49a7eb9d17c2ab6e40dafe3765ebf4d"><code>73a5d5d</code></a> Add test for dereference of an empty Buf</li> <li><a href="https://github.com/rust-lang/git2-rs/commit/ce566831eb188b0fdb27962e154b8da6103071bf"><code>ce56683</code></a> fix: check ptr nullity before calling from_raw_parts</li> <li>See full diff in <a href="https://github.com/rust-lang/git2-rs/compare/git2-0.20.3...git2-0.20.4">compare view</a></li> </ul> </details> <br /> Updates `jsonwebtoken` from 10.2.0 to 10.3.0 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/Keats/jsonwebtoken/blob/master/CHANGELOG.md">jsonwebtoken's changelog</a>.</em></p> <blockquote> <h2>10.3.0 (2026-01-27)</h2> <ul> <li>Export everything needed to define your own CryptoProvider</li> <li>Fix type confusion with exp/nbf when not required</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/Keats/jsonwebtoken/commit/abbc3076742c4161347bc6b8bf4aa5eb86e1dc01"><code>abbc307</code></a> Fix type confusion</li> <li><a href="https://github.com/Keats/jsonwebtoken/commit/e99740d15420b735cd3ba90db1e8dfdbcaa51b2f"><code>e99740d</code></a> fix: bump minimal version requirements (<a href="https://redirect.github.com/Keats/jsonwebtoken/issues/481">#481</a>)</li> <li><a href="https://github.com/Keats/jsonwebtoken/commit/50d15e042cb623ca0bd67374c0fc09a5da323c2e"><code>50d15e0</code></a> Use try_sign to avoid panics (<a href="https://redirect.github.com/Keats/jsonwebtoken/issues/479">#479</a>)</li> <li><a href="https://github.com/Keats/jsonwebtoken/commit/245858fdf3fade3ef176d49d00334dec9e9f6b0b"><code>245858f</code></a> Bump some dep</li> <li><a href="https://github.com/Keats/jsonwebtoken/commit/122c2ed079dddf8d174492007c778aa495efde8d"><code>122c2ed</code></a> Bump action number in CI</li> <li><a href="https://github.com/Keats/jsonwebtoken/commit/72e0c7fa4042e71b3d3482777b956f5918f91ac2"><code>72e0c7f</code></a> Expose cryptography backends via CryptoProvider (<a href="https://redirect.github.com/Keats/jsonwebtoken/issues/452">#452</a>)</li> <li>See full diff in <a href="https://github.com/Keats/jsonwebtoken/compare/v10.2.0...v10.3.0">compare view</a></li> </ul> </details> <br /> Updates `passterm` from 2.0.1 to 2.0.6 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/finfet/passterm/blob/main/CHANGELOG.md">passterm's changelog</a>.</em></p> <blockquote> <h2>Version 2.0.6</h2> <p>2025-02-01</p> <ul> <li>Switch to windows-link for windows linking</li> </ul> <h2>Version 2.0.5</h2> <p>2024-12-07</p> <ul> <li>Fix extraneous newline being printed on windows</li> <li>Open tty with O_NOCTTY on unix systems to prevent the prompt from becoming the controlling terminal</li> <li>Fix stdin password prompt to always attempt to disable echo even if stdin is not a tty</li> </ul> <h2>Version 2.0.4</h2> <p>2024-10-27</p> <ul> <li>Various windows fixes. Add check for null stdin handle, and avoid closing it</li> <li>Upgrade zeroize version</li> </ul> <h2>Version 2.0.3</h2> <p>2023-12-15</p> <ul> <li>Remove usage of windows-sys</li> </ul> <h2>Version 2.0.2</h2> <p>2023-12-15</p> <ul> <li>Upgrade dependencies</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/finfet/passterm/commit/fe55ce8cca520700a8ee92d621b9d1449ba77471"><code>fe55ce8</code></a> Fix windows-link macro call</li> <li><a href="https://github.com/finfet/passterm/commit/f1a851a61fe4dec73e992bcfec9a5349bf9b9dd4"><code>f1a851a</code></a> passterm v2.0.6</li> <li><a href="https://github.com/finfet/passterm/commit/4fc1d4cba0acc4eec07a52289cff22e9371319ed"><code>4fc1d4c</code></a> Update CHANGELOG</li> <li><a href="https://github.com/finfet/passterm/commit/2f4bcc5587798b998216522ef8bb182d82ad26f2"><code>2f4bcc5</code></a> Fix tty prompt to use O_CNOTTY</li> <li><a href="https://github.com/finfet/passterm/commit/d38759b11665760906417ea3df0df040d3403a17"><code>d38759b</code></a> Fix extraneous newline on windows pass prompts</li> <li><a href="https://github.com/finfet/passterm/commit/6d677ab5f5f69ed8b0a0adf535012f969f2ed43c"><code>6d677ab</code></a> Version 2.0.4</li> <li><a href="https://github.com/finfet/passterm/commit/8f1388d4692e625b48f18fade6c5bc2856c3ec6d"><code>8f1388d</code></a> Various Windows fixes</li> <li><a href="https://github.com/finfet/passterm/commit/79ee0fe86d5436402d4b001bd22d06e51bab089b"><code>79ee0fe</code></a> Version 2.0.3</li> <li><a href="https://github.com/finfet/passterm/commit/064cca7c0bc7470dfc6896f1e9c2fd59464c753c"><code>064cca7</code></a> Remove windows-sys dependency</li> <li><a href="https://github.com/finfet/passterm/commit/21a47e676cfc038c59e49d1f6940b6e9106d8641"><code>21a47e6</code></a> Upgrade deps</li> <li>See full diff in <a href="https://github.com/finfet/passterm/compare/v2.0.1...v2.0.6">compare view</a></li> </ul> </details> <br /> Updates `proc-macro2` from 1.0.105 to 1.0.106 <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.106</h2> <ul> <li>Optimize <code>Span::byte_range</code> (<a href="https://redirect.github.com/dtolnay/proc-macro2/issues/530">#530</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/proc-macro2/commit/58ab776b95a4c2865554badbb6629c50971a9118"><code>58ab776</code></a> Release 1.0.106</li> <li><a href="https://github.com/dtolnay/proc-macro2/commit/1e18a0bb10f41371b39ede0c22e717d020b8a1e7"><code>1e18a0b</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/proc-macro2/issues/530">#530</a> from dtolnay/byterange</li> <li><a href="https://github.com/dtolnay/proc-macro2/commit/7f5973b73a68687868845b7ff08d8eae1d22c0ce"><code>7f5973b</code></a> Make char count bidirectional</li> <li><a href="https://github.com/dtolnay/proc-macro2/commit/08d1dd0bc3683aff781155809111045f9058ba73"><code>08d1dd0</code></a> Cache span end positions</li> <li>See full diff in <a href="https://github.com/dtolnay/proc-macro2/compare/1.0.105...1.0.106">compare view</a></li> </ul> </details> <br /> Updates `quote` from 1.0.43 to 1.0.44 <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.44</h2> <ul> <li>Support raw lifetime syntax <code>'r#async</code> (<a href="https://redirect.github.com/dtolnay/quote/issues/323">#323</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/quote/commit/ad9fb4019efc3f34e5d3b9be416199937f7a8ee3"><code>ad9fb40</code></a> Release 1.0.44</li> <li><a href="https://github.com/dtolnay/quote/commit/6df23cd31b0b97958c42ba9e85bfbde793804ea9"><code>6df23cd</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/quote/issues/323">#323</a> from dtolnay/lifetime</li> <li><a href="https://github.com/dtolnay/quote/commit/f7848915a113ba272ff25b8119175a3e8f80d6ff"><code>f784891</code></a> Support raw lifetime</li> <li><a href="https://github.com/dtolnay/quote/commit/508dbdd73439cbc8ad335ff2b1a4c738006cebe2"><code>508dbdd</code></a> Add test of raw lifetime</li> <li><a href="https://github.com/dtolnay/quote/commit/27cb8c941e4522654b07e91b9a94a513c9cef070"><code>27cb8c9</code></a> Update ui test suite to nightly-2026-01-21</li> <li><a href="https://github.com/dtolnay/quote/commit/bdd36fc744dbb63aa204a51044ecb249c2159dd8"><code>bdd36fc</code></a> Touch up PR 321</li> <li><a href="https://github.com/dtolnay/quote/commit/d62d6ec2a05758517bcda5c69ee663c403bb476f"><code>d62d6ec</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/quote/issues/321">#321</a> from tamird/doc-alloc-format</li> <li><a href="https://github.com/dtolnay/quote/commit/242c683b9504900e8178f880cb3d163d97efc2db"><code>242c683</code></a> doc: restore link to <code>format!</code></li> <li>See full diff in <a href="https://github.com/dtolnay/quote/compare/1.0.43...1.0.44">compare view</a></li> </ul> </details> <br /> Updates `slab` from 0.4.11 to 0.4.12 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tokio-rs/slab/releases">slab's releases</a>.</em></p> <blockquote> <h2>v0.4.12</h2> <ul> <li>Help the compiler elide copies in <code>try_remove()</code> (<a href="https://redirect.github.com/tokio-rs/slab/issues/160">#160</a>)</li> <li>Add security policy (<a href="https://redirect.github.com/tokio-rs/slab/issues/154">#154</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/tokio-rs/slab/blob/master/CHANGELOG.md">slab's changelog</a>.</em></p> <blockquote> <h1>0.4.12 (January 31, 2026)</h1> <ul> <li>Help the compiler elide copies in <code>try_remove()</code> (<a href="https://redirect.github.com/tokio-rs/slab/issues/160">#160</a>)</li> <li>Add security policy (<a href="https://redirect.github.com/tokio-rs/slab/issues/154">#154</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tokio-rs/slab/commit/a1e4346070a48c936d808de75191dee5d01e433c"><code>a1e4346</code></a> Release v0.4.12 (<a href="https://redirect.github.com/tokio-rs/slab/issues/161">#161</a>)</li> <li><a href="https://github.com/tokio-rs/slab/commit/1a97b80856c7bcde78c1d500ff80d9fe9026c9fd"><code>1a97b80</code></a> Help the compiler elide copies in try_remove() (<a href="https://redirect.github.com/tokio-rs/slab/issues/160">#160</a>)</li> <li><a href="https://github.com/tokio-rs/slab/commit/4955f79e3f67d3b3c9df6c2089bbc8d9824efc9e"><code>4955f79</code></a> fix: add missing semicolon (<a href="https://redirect.github.com/tokio-rs/slab/issues/158">#158</a>)</li> <li><a href="https://github.com/tokio-rs/slab/commit/7f1f3a16df50f5cf9112898360dcbc32456c2658"><code>7f1f3a1</code></a> Add security policy (<a href="https://redirect.github.com/tokio-rs/slab/issues/154">#154</a>)</li> <li>See full diff in <a href="https://github.com/tokio-rs/slab/compare/v0.4.11...v0.4.12">compare view</a></li> </ul> </details> <br /> You can trigger a rebase of this PR 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> -- 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]
