dependabot[bot] opened a new pull request, #2458:
URL: https://github.com/apache/iggy/pull/2458

   Bumps the minor-and-patch group with 14 updates:
   
   | Package | From | To |
   | --- | --- | --- |
   | [cyper](https://github.com/compio-rs/cyper) | `0.7.0` | `0.7.1` |
   | [cyper-axum](https://github.com/compio-rs/cyper) | `0.7.0` | `0.7.1` |
   | [derive_more](https://github.com/JelteF/derive_more) | `2.0.1` | `2.1.0` |
   | [dlopen2](https://github.com/OpenByteDev/dlopen2) | `0.8.1` | `0.8.2` |
   | [error_set](https://github.com/mcmah309/error_set) | `0.9.0` | `0.9.1` |
   | [log](https://github.com/rust-lang/log) | `0.4.28` | `0.4.29` |
   | [passterm](https://github.com/finfet/passterm) | `2.0.1` | `2.0.5` |
   | [reqwest](https://github.com/seanmonstar/reqwest) | `0.12.24` | `0.12.25` |
   | [tower-http](https://github.com/tower-rs/tower-http) | `0.6.7` | `0.6.8` |
   | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.48.0` | `0.48.1` |
   | [git2](https://github.com/rust-lang/git2-rs) | `0.20.2` | `0.20.3` |
   | [protox](https://github.com/andrewhickman/protox) | `0.9.0` | `0.9.1` |
   | [ctor](https://github.com/mmastrac/rust-ctor) | `0.6.1` | `0.6.3` |
   | [libc](https://github.com/rust-lang/libc) | `0.2.177` | `0.2.178` |
   
   Updates `cyper` from 0.7.0 to 0.7.1
   <details>
   <summary>Commits</summary>
   <ul>
   <li>See full diff in <a 
href="https://github.com/compio-rs/cyper/commits";>compare view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `cyper-axum` from 0.7.0 to 0.7.1
   <details>
   <summary>Commits</summary>
   <ul>
   <li>See full diff in <a 
href="https://github.com/compio-rs/cyper/commits";>compare view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `derive_more` from 2.0.1 to 2.1.0
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/JelteF/derive_more/releases";>derive_more's 
releases</a>.</em></p>
   <blockquote>
   <h2>2.1.0</h2>
   <h3>Added</h3>
   <ul>
   <li>Support <code>#[display(rename_all = &quot;&lt;casing&gt;&quot;)]</code> 
attribute to change output for implicit naming of unit enum variants or unit 
structs when deriving <code>Display</code>. (<a 
href="https://redirect.github.com/JelteF/derive_more/pull/443";>#443</a>)</li>
   <li>Support <code>#[from_str(rename_all = 
&quot;&lt;casing&gt;&quot;)]</code> attribute for unit enum variants and unit 
structs when deriving <code>FromStr</code>. (<a 
href="https://redirect.github.com/JelteF/derive_more/pull/467";>#467</a>)</li>
   <li>Support <code>Option</code> fields for <code>Error::source()</code> in 
<code>Error</code> derive. (<a 
href="https://redirect.github.com/JelteF/derive_more/pull/459";>#459</a>)</li>
   <li>Support structs with no fields in <code>FromStr</code> derive. (<a 
href="https://redirect.github.com/JelteF/derive_more/pull/469";>#469</a>)</li>
   <li>Add <code>PartialEq</code> derive similar to <code>std</code>'s one, but 
considering generics correctly, and implementing <code>ne()</code> method as 
well. (<a 
href="https://redirect.github.com/JelteF/derive_more/pull/473";>#473</a>, <a 
href="https://redirect.github.com/JelteF/derive_more/pull/475";>#475</a>)</li>
   <li>Add <code>Eq</code> derive similar to <code>std</code>'s one, but 
considering generics correctly. (<a 
href="https://redirect.github.com/JelteF/derive_more/pull/479";>#479</a>)</li>
   <li>Proxy-pass <code>#[allow]</code>/<code>#[expect]</code> attributes of 
the type in <code>Constructor</code> derive. (<a 
href="https://redirect.github.com/JelteF/derive_more/pull/477";>#477</a>)</li>
   <li>Support <code>Deref</code> and <code>DerefMut</code> derives for enums. 
(<a 
href="https://redirect.github.com/JelteF/derive_more/pull/485";>#485</a>)</li>
   <li>Support custom error in <code>FromStr</code> derive. (<a 
href="https://redirect.github.com/JelteF/derive_more/pull/494";>#494</a>)</li>
   <li>Support custom error in <code>TryInto</code> derive. (<a 
href="https://redirect.github.com/JelteF/derive_more/pull/503";>#503</a>)</li>
   <li>Support skipping fields in <code>Add</code>-like, 
<code>AddAssign</code>-like, <code>Mul</code>-like and 
<code>MulAssign</code>-like derives. (<a 
href="https://redirect.github.com/JelteF/derive_more/pull/472";>#472</a>)</li>
   </ul>
   <h3>Changed</h3>
   <ul>
   <li>The minimum supported Rust version (MSRV) is now Rust 1.81. (<a 
href="https://redirect.github.com/JelteF/derive_more/pull/466";>#466</a>)</li>
   <li><code>Add</code>-like, <code>AddAssign</code>-like, 
<code>Mul</code>-like and <code>MulAssign</code>-like derives now infer trait 
bounds for generics structurally (bound field types instead of type parameters 
directly). (<a 
href="https://redirect.github.com/JelteF/derive_more/pull/472";>#472</a>)</li>
   </ul>
   <h3>Fixed</h3>
   <ul>
   <li>Suppress deprecation warnings in generated code. (<a 
href="https://redirect.github.com/JelteF/derive_more/pull/454";>#454</a>)</li>
   <li>Silent no-op when <code>#[try_from(repr)]</code> attribute is not 
specified for <code>TryFrom</code> derive. (<a 
href="https://redirect.github.com/JelteF/derive_more/pull/458";>#458</a>)</li>
   <li>Missing trait bounds in <code>AsRef</code>/<code>AsMut</code> derives 
when associative types are involved. (<a 
href="https://redirect.github.com/JelteF/derive_more/pull/474";>#474</a>)</li>
   <li>Erroneous code generated in <code>Try</code>/<code>TryInto</code> 
derives when <code>Self</code> type is present in the struct or enum 
definition. (<a 
href="https://redirect.github.com/JelteF/derive_more/pull/489";>#489</a>)</li>
   <li>Dependency on unstable <code>feature(error_generic_member_access)</code> 
in <code>Error</code> derive when using <code>Backtrace</code> on a non-nightly 
toolchain. (<a 
href="https://redirect.github.com/JelteF/derive_more/pull/513";>#513</a>)</li>
   <li>Broken support for <code>#[&lt;display-trait&gt;(&quot;default 
formatting&quot;)]</code> attribute without <code>{_variant}</code> being used 
as default for enum variants without explicit formatting. (<a 
href="https://redirect.github.com/JelteF/derive_more/pull/495";>#495</a>)</li>
   </ul>
   <h2>New Contributors</h2>
   <ul>
   <li><a href="https://github.com/jasl";><code>@​jasl</code></a> made their 
first contribution in <a 
href="https://redirect.github.com/JelteF/derive_more/pull/453";>JelteF/derive_more#453</a></li>
   <li><a href="https://github.com/aborgna-q";><code>@​aborgna-q</code></a> made 
their first contribution in <a 
href="https://redirect.github.com/JelteF/derive_more/pull/454";>JelteF/derive_more#454</a></li>
   <li><a 
href="https://github.com/maxime-bruno";><code>@​maxime-bruno</code></a> made 
their first contribution in <a 
href="https://redirect.github.com/JelteF/derive_more/pull/461";>JelteF/derive_more#461</a></li>
   <li><a href="https://github.com/Cheban1996";><code>@​Cheban1996</code></a> 
made their first contribution in <a 
href="https://redirect.github.com/JelteF/derive_more/pull/477";>JelteF/derive_more#477</a></li>
   <li><a href="https://github.com/kiendang";><code>@​kiendang</code></a> made 
their first contribution in <a 
href="https://redirect.github.com/JelteF/derive_more/pull/486";>JelteF/derive_more#486</a></li>
   <li><a href="https://github.com/goldlinker";><code>@​goldlinker</code></a> 
made their first contribution in <a 
href="https://redirect.github.com/JelteF/derive_more/pull/509";>JelteF/derive_more#509</a></li>
   <li><a href="https://github.com/CJKay";><code>@​CJKay</code></a> made their 
first contribution in <a 
href="https://redirect.github.com/JelteF/derive_more/pull/513";>JelteF/derive_more#513</a></li>
   <li><a href="https://github.com/ErmitaVulpe";><code>@​ErmitaVulpe</code></a> 
made their first contribution in <a 
href="https://redirect.github.com/JelteF/derive_more/pull/472";>JelteF/derive_more#472</a></li>
   </ul>
   <p><strong>Full Changelog</strong>: <a 
href="https://github.com/JelteF/derive_more/compare/v2.0.1...v2.1.0";>https://github.com/JelteF/derive_more/compare/v2.0.1...v2.1.0</a></p>
   </blockquote>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/JelteF/derive_more/blob/master/CHANGELOG.md";>derive_more's
 changelog</a>.</em></p>
   <blockquote>
   <h2>2.1.0 - 2025-12-02</h2>
   <h3>Added</h3>
   <ul>
   <li>Support <code>#[display(rename_all = &quot;&lt;casing&gt;&quot;)]</code> 
attribute to change output for
   implicit naming of unit enum variants or unit structs when deriving 
<code>Display</code>.
   (<a 
href="https://redirect.github.com/JelteF/derive_more/pull/443";>#443</a>)</li>
   <li>Support <code>#[from_str(rename_all = 
&quot;&lt;casing&gt;&quot;)]</code> attribute for unit enum variants
   and unit structs when deriving <code>FromStr</code>.
   (<a 
href="https://redirect.github.com/JelteF/derive_more/pull/467";>#467</a>)</li>
   <li>Support <code>Option</code> fields for <code>Error::source()</code> in 
<code>Error</code> derive.
   (<a 
href="https://redirect.github.com/JelteF/derive_more/pull/459";>#459</a>)</li>
   <li>Support structs with no fields in <code>FromStr</code> derive.
   (<a 
href="https://redirect.github.com/JelteF/derive_more/pull/469";>#469</a>)</li>
   <li>Add <code>PartialEq</code> derive similar to <code>std</code>'s one, but 
considering generics correctly,
   and implementing <code>ne()</code> method as well.
   (<a href="https://redirect.github.com/JelteF/derive_more/pull/473";>#473</a>,
   <a 
href="https://redirect.github.com/JelteF/derive_more/pull/475";>#475</a>)</li>
   <li>Add <code>Eq</code> derive similar to <code>std</code>'s one, but 
considering generics correctly.
   (<a 
href="https://redirect.github.com/JelteF/derive_more/pull/479";>#479</a>)</li>
   <li>Proxy-pass <code>#[allow]</code>/<code>#[expect]</code> attributes of 
the type in <code>Constructor</code> derive.
   (<a 
href="https://redirect.github.com/JelteF/derive_more/pull/477";>#477</a>)</li>
   <li>Support <code>Deref</code> and <code>DerefMut</code> derives for enums.
   (<a 
href="https://redirect.github.com/JelteF/derive_more/pull/485";>#485</a>)</li>
   <li>Support custom error in <code>FromStr</code> derive.
   (<a 
href="https://redirect.github.com/JelteF/derive_more/pull/494";>#494</a>)</li>
   <li>Support custom error in <code>TryInto</code> derive.
   (<a 
href="https://redirect.github.com/JelteF/derive_more/pull/503";>#503</a>)</li>
   <li>Support skipping fields in <code>Add</code>-like, 
<code>AddAssign</code>-like, <code>Mul</code>-like and
   <code>MulAssign</code>-like derives.
   (<a 
href="https://redirect.github.com/JelteF/derive_more/pull/472";>#472</a>)</li>
   </ul>
   <h3>Changed</h3>
   <ul>
   <li>The minimum supported Rust version (MSRV) is now Rust 1.81.
   (<a 
href="https://redirect.github.com/JelteF/derive_more/pull/466";>#466</a>)</li>
   <li><code>Add</code>-like, <code>AddAssign</code>-like, 
<code>Mul</code>-like and <code>MulAssign</code>-like derives now
   infer trait bounds for generics structurally (bound field types instead of
   type parameters directly).
   (<a 
href="https://redirect.github.com/JelteF/derive_more/pull/472";>#472</a>)</li>
   </ul>
   <h3>Fixed</h3>
   <ul>
   <li>Suppress deprecation warnings in generated code.
   (<a 
href="https://redirect.github.com/JelteF/derive_more/pull/454";>#454</a>)</li>
   <li>Silent no-op when <code>#[try_from(repr)]</code> attribute is not 
specified for <code>TryFrom</code> derive.
   (<a 
href="https://redirect.github.com/JelteF/derive_more/pull/458";>#458</a>)</li>
   <li>Missing trait bounds in <code>AsRef</code>/<code>AsMut</code> derives 
when associative types are involved.
   (<a 
href="https://redirect.github.com/JelteF/derive_more/pull/474";>#474</a>)</li>
   <li>Erroneous code generated in <code>Try</code>/<code>TryInto</code> 
derives when <code>Self</code> type is present in</li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/JelteF/derive_more/commit/c354bad7c9707edb05a471ba35c6b059f3023e78";><code>c354bad</code></a>
 Prepare 2.1.0 release (<a 
href="https://redirect.github.com/JelteF/derive_more/issues/521";>#521</a>)</li>
   <li><a 
href="https://github.com/JelteF/derive_more/commit/983875f8abd25e49f659247bfa6cc831819dbd4f";><code>983875f</code></a>
 Allow using enum-level attributes for non-<code>Display</code> formatting 
traits as defa...</li>
   <li><a 
href="https://github.com/JelteF/derive_more/commit/2d3805b66f00cb31303c7e75edfef9003d48ff04";><code>2d3805b</code></a>
 Allow skipping fields for 
<code>Add</code>/<code>AddAssign</code>/<code>Mul</code>/<code>MulAssign</code>-like
 derives (#...</li>
   <li><a 
href="https://github.com/JelteF/derive_more/commit/1b5d314b8c8391e476653f32f1ca95572492b964";><code>1b5d314</code></a>
 Upgrade <code>convert_case</code> requirement from 0.9 to 0.10 version (<a 
href="https://redirect.github.com/JelteF/derive_more/issues/520";>#520</a>)</li>
   <li><a 
href="https://github.com/JelteF/derive_more/commit/c32d0a0a05e8bb0c5dab666aca2a4f96e9918c15";><code>c32d0a0</code></a>
 Upgrade <code>actions/checkout</code> from 5 to 6 version (<a 
href="https://redirect.github.com/JelteF/derive_more/issues/519";>#519</a>)</li>
   <li><a 
href="https://github.com/JelteF/derive_more/commit/905f5a3020cf51a82dc2d5fde6f8e5c0cb8e48f4";><code>905f5a3</code></a>
 Upgrade <code>convert_case</code> crate from 0.8 to 0.9 version (<a 
href="https://redirect.github.com/JelteF/derive_more/issues/517";>#517</a>)</li>
   <li><a 
href="https://github.com/JelteF/derive_more/commit/8e9104d5389844a0323f018c22d7714ec71e3345";><code>8e9104d</code></a>
 Support <code>syn::ExprCall</code> and <code>syn::ExprClosure</code> for 
custom errors (<a 
href="https://redirect.github.com/JelteF/derive_more/issues/516";>#516</a>, <a 
href="https://redirect.github.com/JelteF/derive_more/issues/112";>#112</a>)</li>
   <li><a 
href="https://github.com/JelteF/derive_more/commit/be3edc4c9fcb0005b7212710136c3c90796afcf1";><code>be3edc4</code></a>
 Update <code>compile_fail</code> tests for 1.91 Rust (<a 
href="https://redirect.github.com/JelteF/derive_more/issues/515";>#515</a>)</li>
   <li><a 
href="https://github.com/JelteF/derive_more/commit/929dd417cef026b77417a4b68044131d6a910f33";><code>929dd41</code></a>
 Support custom error type in <code>TryInto</code> derive (<a 
href="https://redirect.github.com/JelteF/derive_more/issues/503";>#503</a>, <a 
href="https://redirect.github.com/JelteF/derive_more/issues/396";>#396</a>)</li>
   <li><a 
href="https://github.com/JelteF/derive_more/commit/4fc682791a2f7744134729d9a3412019285ea007";><code>4fc6827</code></a>
 Remove unstable feature requirement when deriving <code>Backtrace</code>d 
<code>Error</code> (<a 
href="https://redirect.github.com/JelteF/derive_more/issues/513";>#513</a>,...</li>
   <li>Additional commits viewable in <a 
href="https://github.com/JelteF/derive_more/compare/v2.0.1...v2.1.0";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `dlopen2` from 0.8.1 to 0.8.2
   <details>
   <summary>Commits</summary>
   <ul>
   <li>See full diff in <a 
href="https://github.com/OpenByteDev/dlopen2/commits";>compare view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `error_set` from 0.9.0 to 0.9.1
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/mcmah309/error_set/releases";>error_set's 
releases</a>.</em></p>
   <blockquote>
   <h2>v0.9.1</h2>
   <h2>What's Changed</h2>
   <ul>
   <li>Fix expansion of unit error structs by including semicolon token from 
input by <a href="https://github.com/reivilibre";><code>@​reivilibre</code></a> 
in <a 
href="https://redirect.github.com/mcmah309/error_set/pull/37";>mcmah309/error_set#37</a></li>
   </ul>
   <h2>New Contributors</h2>
   <ul>
   <li><a href="https://github.com/reivilibre";><code>@​reivilibre</code></a> 
made their first contribution in <a 
href="https://redirect.github.com/mcmah309/error_set/pull/37";>mcmah309/error_set#37</a></li>
   </ul>
   <p><strong>Full Changelog</strong>: <a 
href="https://github.com/mcmah309/error_set/compare/v0.9.0...v0.9.1";>https://github.com/mcmah309/error_set/compare/v0.9.0...v0.9.1</a></p>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/mcmah309/error_set/commit/9c195192d6b85146244671a133817556fcb023bf";><code>9c19519</code></a>
 Bump</li>
   <li><a 
href="https://github.com/mcmah309/error_set/commit/c79443061d5e4cce53541a3c5190f436fc83606f";><code>c794430</code></a>
 meta: Improve README</li>
   <li><a 
href="https://github.com/mcmah309/error_set/commit/12e3ef3f33e93726d891e7bfe8e210fad661c7a7";><code>12e3ef3</code></a>
 Add test for unit struct</li>
   <li><a 
href="https://github.com/mcmah309/error_set/commit/22f2e3851c3a0f49df2b49c66d18ed6d1c6dd1f6";><code>22f2e38</code></a>
 Merge pull request <a 
href="https://redirect.github.com/mcmah309/error_set/issues/37";>#37</a> from 
reivilibre/rei/fix_unit_structs</li>
   <li><a 
href="https://github.com/mcmah309/error_set/commit/605448f4a5e0506f94196cb5eed786b0a97f5a13";><code>605448f</code></a>
 Fix expansion of unit error structs by including semicolon token from 
input</li>
   <li><a 
href="https://github.com/mcmah309/error_set/commit/5b2b1b30c5a5369c7b9e8c776c27154fb20feff3";><code>5b2b1b3</code></a>
 meta: Update test</li>
   <li><a 
href="https://github.com/mcmah309/error_set/commit/89d33897e46dae80ae4c7633e012ef35b893d5ec";><code>89d3389</code></a>
 meta: Update test</li>
   <li><a 
href="https://github.com/mcmah309/error_set/commit/b06829a8f626848c6a3963fcb11329eb0b598664";><code>b06829a</code></a>
 meta: Update test</li>
   <li><a 
href="https://github.com/mcmah309/error_set/commit/c6a4cab49b7bf24dbc872cf708ce03579e89ff04";><code>c6a4cab</code></a>
 Remove err_trail from repo</li>
   <li><a 
href="https://github.com/mcmah309/error_set/commit/53292aa36586e7b9b0c76d0d1417e4787f238bfb";><code>53292aa</code></a>
 meta: Update Cargo.toml</li>
   <li>Additional commits viewable in <a 
href="https://github.com/mcmah309/error_set/compare/v0.9.0...v0.9.1";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `log` from 0.4.28 to 0.4.29
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/rust-lang/log/releases";>log's releases</a>.</em></p>
   <blockquote>
   <h2>0.4.29</h2>
   <h2>MSRV</h2>
   <p>This release increases <code>log</code>'s MSRV from <code>1.61.0</code> 
to <code>1.68.0</code>.</p>
   <h2>What's Changed</h2>
   <ul>
   <li>docs: Add missing impls from README.md by <a 
href="https://github.com/AldaronLau";><code>@​AldaronLau</code></a> in <a 
href="https://redirect.github.com/rust-lang/log/pull/703";>rust-lang/log#703</a></li>
   <li>Point to new URLs for favicon and logo by <a 
href="https://github.com/AldaronLau";><code>@​AldaronLau</code></a> in <a 
href="https://redirect.github.com/rust-lang/log/pull/704";>rust-lang/log#704</a></li>
   <li>perf: reduce llvm-lines of FromStr for <code>Level</code> and 
<code>LevelFilter</code> by <a 
href="https://github.com/dishmaker";><code>@​dishmaker</code></a> in <a 
href="https://redirect.github.com/rust-lang/log/pull/709";>rust-lang/log#709</a></li>
   <li>Replace serde with serde_core by <a 
href="https://github.com/Thomasdezeeuw";><code>@​Thomasdezeeuw</code></a> in <a 
href="https://redirect.github.com/rust-lang/log/pull/712";>rust-lang/log#712</a></li>
   <li>Fix clippy lints by <a 
href="https://github.com/Thomasdezeeuw";><code>@​Thomasdezeeuw</code></a> in <a 
href="https://redirect.github.com/rust-lang/log/pull/713";>rust-lang/log#713</a></li>
   <li>Use GitHub Actions to install Rust and cargo-hack by <a 
href="https://github.com/Thomasdezeeuw";><code>@​Thomasdezeeuw</code></a> in <a 
href="https://redirect.github.com/rust-lang/log/pull/715";>rust-lang/log#715</a></li>
   <li>Exclude old unstable_kv features from testing matrix by <a 
href="https://github.com/Thomasdezeeuw";><code>@​Thomasdezeeuw</code></a> in <a 
href="https://redirect.github.com/rust-lang/log/pull/716";>rust-lang/log#716</a></li>
   <li>Fix up CI by <a 
href="https://github.com/KodrAus";><code>@​KodrAus</code></a> in <a 
href="https://redirect.github.com/rust-lang/log/pull/718";>rust-lang/log#718</a></li>
   <li>Prepare for 0.4.29 release by <a 
href="https://github.com/KodrAus";><code>@​KodrAus</code></a> in <a 
href="https://redirect.github.com/rust-lang/log/pull/719";>rust-lang/log#719</a></li>
   </ul>
   <h2>New Contributors</h2>
   <ul>
   <li><a href="https://github.com/AldaronLau";><code>@​AldaronLau</code></a> 
made their first contribution in <a 
href="https://redirect.github.com/rust-lang/log/pull/703";>rust-lang/log#703</a></li>
   <li><a href="https://github.com/dishmaker";><code>@​dishmaker</code></a> made 
their first contribution in <a 
href="https://redirect.github.com/rust-lang/log/pull/709";>rust-lang/log#709</a></li>
   </ul>
   <p><strong>Full Changelog</strong>: <a 
href="https://github.com/rust-lang/log/compare/0.4.28...0.4.29";>https://github.com/rust-lang/log/compare/0.4.28...0.4.29</a></p>
   </blockquote>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/rust-lang/log/blob/master/CHANGELOG.md";>log's 
changelog</a>.</em></p>
   <blockquote>
   <h2>[0.4.29] - 2025-12-02</h2>
   <h2>What's Changed</h2>
   <ul>
   <li>perf: reduce llvm-lines of FromStr for <code>Level</code> and 
<code>LevelFilter</code> by <a 
href="https://github.com/dishmaker";><code>@​dishmaker</code></a> in <a 
href="https://redirect.github.com/rust-lang/log/pull/709";>rust-lang/log#709</a></li>
   <li>Replace serde with serde_core by <a 
href="https://github.com/Thomasdezeeuw";><code>@​Thomasdezeeuw</code></a> in <a 
href="https://redirect.github.com/rust-lang/log/pull/712";>rust-lang/log#712</a></li>
   </ul>
   <h2>New Contributors</h2>
   <ul>
   <li><a href="https://github.com/AldaronLau";><code>@​AldaronLau</code></a> 
made their first contribution in <a 
href="https://redirect.github.com/rust-lang/log/pull/703";>rust-lang/log#703</a></li>
   <li><a href="https://github.com/dishmaker";><code>@​dishmaker</code></a> made 
their first contribution in <a 
href="https://redirect.github.com/rust-lang/log/pull/709";>rust-lang/log#709</a></li>
   </ul>
   <p><strong>Full Changelog</strong>: <a 
href="https://github.com/rust-lang/log/compare/0.4.28...0.4.29";>https://github.com/rust-lang/log/compare/0.4.28...0.4.29</a></p>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/rust-lang/log/commit/b1e2df7bce7a1b685aa9bfd1db0a5cac1f0fc27d";><code>b1e2df7</code></a>
 Merge pull request <a 
href="https://redirect.github.com/rust-lang/log/issues/719";>#719</a> from 
rust-lang/cargo/0.4.29</li>
   <li><a 
href="https://github.com/rust-lang/log/commit/3fe1a546dc323e614c35d136920a112406910e06";><code>3fe1a54</code></a>
 prepare for 0.4.29 release</li>
   <li><a 
href="https://github.com/rust-lang/log/commit/7a432d9ab570c49d42fcbd1c3b9e1e300064c2b9";><code>7a432d9</code></a>
 Merge pull request <a 
href="https://redirect.github.com/rust-lang/log/issues/718";>#718</a> from 
rust-lang/ci/msrv</li>
   <li><a 
href="https://github.com/rust-lang/log/commit/0689d568479bb578f66e48df43628cc04aa6269b";><code>0689d56</code></a>
 rebump msrv to 1.68.0</li>
   <li><a 
href="https://github.com/rust-lang/log/commit/46b448e2a76a14210a7270ec11ad97cb9cbda6dc";><code>46b448e</code></a>
 try drop msrv back to 1.61.0</li>
   <li><a 
href="https://github.com/rust-lang/log/commit/929ab3812e86915bb5edb65609cd6d5cb17939fb";><code>929ab38</code></a>
 fix up doc test feature gate</li>
   <li><a 
href="https://github.com/rust-lang/log/commit/957cece4780cb006cbe2f819bd2f893822aad7cb";><code>957cece</code></a>
 bump serde-dependent crates</li>
   <li><a 
href="https://github.com/rust-lang/log/commit/bea40c847c77ecb7b7e9f2d858a21edaa2aa6159";><code>bea40c8</code></a>
 bump msrv to 1.68.0</li>
   <li><a 
href="https://github.com/rust-lang/log/commit/c540184ee9581d7373135f5511b6b174b5cee2d6";><code>c540184</code></a>
 Merge pull request <a 
href="https://redirect.github.com/rust-lang/log/issues/716";>#716</a> from 
rust-lang/ci-smaller-matrix2</li>
   <li><a 
href="https://github.com/rust-lang/log/commit/c971e636c4b44ff01ff21e6aa82607272d2d0bf2";><code>c971e63</code></a>
 Merge branch 'master' into ci-smaller-matrix2</li>
   <li>Additional commits viewable in <a 
href="https://github.com/rust-lang/log/compare/0.4.28...0.4.29";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `passterm` from 2.0.1 to 2.0.5
   <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.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/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.5";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `reqwest` from 0.12.24 to 0.12.25
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/seanmonstar/reqwest/releases";>reqwest's 
releases</a>.</em></p>
   <blockquote>
   <h2>v0.12.25</h2>
   <h2>Highlights</h2>
   <ul>
   <li>Add <code>Error::is_upgrade()</code> to determine if the error was from 
an HTTP upgrade.</li>
   <li>Fix sending <code>Proxy-Authorization</code> if only username is 
configured.</li>
   <li>Fix sending <code>Proxy-Authorization</code> to HTTPS proxies when the 
target is HTTP.</li>
   <li>Refactor internal decompression handling to use tower-http.</li>
   </ul>
   <h2>What's Changed</h2>
   <ul>
   <li>tests: fix wasm timeout test with uncached response by <a 
href="https://github.com/seanmonstar";><code>@​seanmonstar</code></a> in <a 
href="https://redirect.github.com/seanmonstar/reqwest/pull/2853";>seanmonstar/reqwest#2853</a></li>
   <li>docs: document connection pooling behavior by <a 
href="https://github.com/vinzmyko";><code>@​vinzmyko</code></a> in <a 
href="https://redirect.github.com/seanmonstar/reqwest/pull/2851";>seanmonstar/reqwest#2851</a></li>
   <li>docs: document WASM client by <a 
href="https://github.com/vinzmyko";><code>@​vinzmyko</code></a> in <a 
href="https://redirect.github.com/seanmonstar/reqwest/pull/2859";>seanmonstar/reqwest#2859</a></li>
   <li>chore: minor improvement for docs by <a 
href="https://github.com/black5box";><code>@​black5box</code></a> in <a 
href="https://redirect.github.com/seanmonstar/reqwest/pull/2862";>seanmonstar/reqwest#2862</a></li>
   <li>fix: send <code>proxy-authorization</code> even with empty 
<code>password</code> by <a 
href="https://github.com/barjin";><code>@​barjin</code></a> in <a 
href="https://redirect.github.com/seanmonstar/reqwest/pull/2868";>seanmonstar/reqwest#2868</a></li>
   <li>feat(error): add <code>is_upgrade</code> method to detect protocol 
upgrade errors by <a 
href="https://github.com/0x676e67";><code>@​0x676e67</code></a> in <a 
href="https://redirect.github.com/seanmonstar/reqwest/pull/2822";>seanmonstar/reqwest#2822</a></li>
   <li>Use decompression from tower-http by <a 
href="https://github.com/ducaale";><code>@​ducaale</code></a> in <a 
href="https://redirect.github.com/seanmonstar/reqwest/pull/2840";>seanmonstar/reqwest#2840</a></li>
   <li>fix(proxy): forward Proxy-Authorization header to HTTPS proxies for HTTP 
targets by <a href="https://github.com/0x676e67";><code>@​0x676e67</code></a> in 
<a 
href="https://redirect.github.com/seanmonstar/reqwest/pull/2872";>seanmonstar/reqwest#2872</a></li>
   <li>v0.12.25 by <a 
href="https://github.com/seanmonstar";><code>@​seanmonstar</code></a> in <a 
href="https://redirect.github.com/seanmonstar/reqwest/pull/2880";>seanmonstar/reqwest#2880</a></li>
   </ul>
   <h2>New Contributors</h2>
   <ul>
   <li><a href="https://github.com/vinzmyko";><code>@​vinzmyko</code></a> made 
their first contribution in <a 
href="https://redirect.github.com/seanmonstar/reqwest/pull/2851";>seanmonstar/reqwest#2851</a></li>
   <li><a href="https://github.com/black5box";><code>@​black5box</code></a> made 
their first contribution in <a 
href="https://redirect.github.com/seanmonstar/reqwest/pull/2862";>seanmonstar/reqwest#2862</a></li>
   <li><a href="https://github.com/barjin";><code>@​barjin</code></a> made their 
first contribution in <a 
href="https://redirect.github.com/seanmonstar/reqwest/pull/2868";>seanmonstar/reqwest#2868</a></li>
   </ul>
   <p><strong>Full Changelog</strong>: <a 
href="https://github.com/seanmonstar/reqwest/compare/v0.12.24...v0.12.25";>https://github.com/seanmonstar/reqwest/compare/v0.12.24...v0.12.25</a></p>
   </blockquote>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md";>reqwest's
 changelog</a>.</em></p>
   <blockquote>
   <h2>v0.12.25</h2>
   <ul>
   <li>Add <code>Error::is_upgrade()</code> to determine if the error was from 
an HTTP upgrade.</li>
   <li>Fix sending <code>Proxy-Authorization</code> if only username is 
configured.</li>
   <li>Fix sending <code>Proxy-Authorization</code> to HTTPS proxies when the 
target is HTTP.</li>
   <li>Refactor internal decompression handling to use tower-http.</li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/seanmonstar/reqwest/commit/f156a9ffa728fc80e646c789168cbc677b73eed7";><code>f156a9f</code></a>
 v0.12.25</li>
   <li><a 
href="https://github.com/seanmonstar/reqwest/commit/fc1ff4fc2b868f3a6bde8ad44befde7b98cb27bf";><code>fc1ff4f</code></a>
 fix(proxy): forward Proxy-Authorization header to HTTPS proxies for HTTP 
targ...</li>
   <li><a 
href="https://github.com/seanmonstar/reqwest/commit/b7c37121c3ad1e6611b283569af4daaa51a94fb4";><code>b7c3712</code></a>
 Use decompression from tower-http (<a 
href="https://redirect.github.com/seanmonstar/reqwest/issues/2840";>#2840</a>)</li>
   <li><a 
href="https://github.com/seanmonstar/reqwest/commit/74e6f84152a48f00106fe72e0bd2cfc1a4254c93";><code>74e6f84</code></a>
 feat(error): add <code>is_upgrade</code> method to detect protocol upgrade 
errors (<a 
href="https://redirect.github.com/seanmonstar/reqwest/issues/2822";>#2822</a>)</li>
   <li><a 
href="https://github.com/seanmonstar/reqwest/commit/c0c06b7aef2041687b453eca48eb4b3e08fd8d67";><code>c0c06b7</code></a>
 fix: send <code>proxy-authorization</code> even with empty 
<code>password</code> (<a 
href="https://redirect.github.com/seanmonstar/reqwest/issues/2868";>#2868</a>)</li>
   <li><a 
href="https://github.com/seanmonstar/reqwest/commit/a2aa5a34e48724be0c1089b0f5afe49b82ece30e";><code>a2aa5a3</code></a>
 chore: minor improvement for docs (<a 
href="https://redirect.github.com/seanmonstar/reqwest/issues/2862";>#2862</a>)</li>
   <li><a 
href="https://github.com/seanmonstar/reqwest/commit/9c4999d60761c5863e8a54d5389a9f049d095a3c";><code>9c4999d</code></a>
 docs: document WASM client (<a 
href="https://redirect.github.com/seanmonstar/reqwest/issues/2859";>#2859</a>)</li>
   <li><a 
href="https://github.com/seanmonstar/reqwest/commit/a97e1956dd14a79b0207082e327098331519bf2b";><code>a97e195</code></a>
 docs: document connection pooling behavior (<a 
href="https://redirect.github.com/seanmonstar/reqwest/issues/2851";>#2851</a>)</li>
   <li><a 
href="https://github.com/seanmonstar/reqwest/commit/e3093edad8ae621f7cf494e5e01c39e2b466279c";><code>e3093ed</code></a>
 tests: fix wasm timeout test with uncached response (<a 
href="https://redirect.github.com/seanmonstar/reqwest/issues/2853";>#2853</a>)</li>
   <li>See full diff in <a 
href="https://github.com/seanmonstar/reqwest/compare/v0.12.24...v0.12.25";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `tower-http` from 0.6.7 to 0.6.8
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/tower-rs/tower-http/releases";>tower-http's 
releases</a>.</em></p>
   <blockquote>
   <h2>tower-http-0.6.8</h2>
   <h2>Fixed</h2>
   <ul>
   <li>Disable <code>multiple_members</code> in Gzip decoder, since HTTP 
context only uses one
   member. (<a 
href="https://redirect.github.com/tower-rs/tower-http/issues/621";>#621</a>)</li>
   </ul>
   <p><a 
href="https://redirect.github.com/tower-rs/tower-http/issues/621";>#621</a>: <a 
href="https://redirect.github.com/tower-rs/tower-http/pull/621";>tower-rs/tower-http#621</a></p>
   <h2>What's Changed</h2>
   <ul>
   <li>Disable <code>multiple_members</code> option for gzip decoder by <a 
href="https://github.com/ducaale";><code>@​ducaale</code></a> in <a 
href="https://redirect.github.com/tower-rs/tower-http/pull/621";>tower-rs/tower-http#621</a></li>
   <li>ci: Pin tracing in MSRV job by <a 
href="https://github.com/ducaale";><code>@​ducaale</code></a> in <a 
href="https://redirect.github.com/tower-rs/tower-http/pull/622";>tower-rs/tower-http#622</a></li>
   <li>ci: Switch cargo-public-api-crates to cargo-check-external-types by <a 
href="https://github.com/tottoto";><code>@​tottoto</code></a> in <a 
href="https://redirect.github.com/tower-rs/tower-http/pull/613";>tower-rs/tower-http#613</a></li>
   <li>Remove deprecated annotations and Refactor From implementations by <a 
href="https://github.com/sinder38";><code>@​sinder38</code></a> in <a 
href="https://redirect.github.com/tower-rs/tower-http/pull/608";>tower-rs/tower-http#608</a></li>
   <li>v0.6.8 by <a 
href="https://github.com/seanmonstar";><code>@​seanmonstar</code></a> in <a 
href="https://redirect.github.com/tower-rs/tower-http/pull/624";>tower-rs/tower-http#624</a></li>
   </ul>
   <h2>New Contributors</h2>
   <ul>
   <li><a href="https://github.com/sinder38";><code>@​sinder38</code></a> made 
their first contribution in <a 
href="https://redirect.github.com/tower-rs/tower-http/pull/608";>tower-rs/tower-http#608</a></li>
   </ul>
   <p><strong>Full Changelog</strong>: <a 
href="https://github.com/tower-rs/tower-http/compare/tower-http-0.6.7...tower-http-0.6.8";>https://github.com/tower-rs/tower-http/compare/tower-http-0.6.7...tower-http-0.6.8</a></p>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/tower-rs/tower-http/commit/33166c8104be9b40ec15c480503d50d8c2312062";><code>33166c8</code></a>
 v0.6.8</li>
   <li><a 
href="https://github.com/tower-rs/tower-http/commit/6680160c39a50b32bb370e9a0dd51c2298c71847";><code>6680160</code></a>
 Fix deprecated lints (<a 
href="https://redirect.github.com/tower-rs/tower-http/issues/608";>#608</a>)</li>
   <li><a 
href="https://github.com/tower-rs/tower-http/commit/81b8231d54e15e3285f9ae84dc573440f76d9d78";><code>81b8231</code></a>
 ci: Switch cargo-public-api-crates to cargo-check-external-types (<a 
href="https://redirect.github.com/tower-rs/tower-http/issues/613";>#613</a>)</li>
   <li><a 
href="https://github.com/tower-rs/tower-http/commit/1fb014438f22ecf68ede8f9a356a1b5b6e1784c4";><code>1fb0144</code></a>
 ci: pin tracing in msrv job (<a 
href="https://redirect.github.com/tower-rs/tower-http/issues/622";>#622</a>)</li>
   <li><a 
href="https://github.com/tower-rs/tower-http/commit/1fe4c091df13eb9dd7c58786615f08abe0d73bc6";><code>1fe4c09</code></a>
 fix(decompression): disable <code>multiple_members</code> option for gzip 
decoder (<a 
href="https://redirect.github.com/tower-rs/tower-http/issues/621";>#621</a>)</li>
   <li>See full diff in <a 
href="https://github.com/tower-rs/tower-http/compare/tower-http-0.6.7...tower-http-0.6.8";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `octocrab` from 0.48.0 to 0.48.1
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/XAMPPRocky/octocrab/releases";>octocrab's 
releases</a>.</em></p>
   <blockquote>
   <h2>v0.48.1</h2>
   <h3>Fixed</h3>
   <ul>
   <li><em>(build)</em> don't fetch dependencies (<a 
href="https://redirect.github.com/XAMPPRocky/octocrab/pull/828";>#828</a>)</li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md";>octocrab's 
changelog</a>.</em></p>
   <blockquote>
   <h2><a 
href="https://github.com/XAMPPRocky/octocrab/compare/v0.48.0...v0.48.1";>0.48.1</a>
 - 2025-12-02</h2>
   <h3>Fixed</h3>
   <ul>
   <li><em>(build)</em> don't fetch dependencies (<a 
href="https://redirect.github.com/XAMPPRocky/octocrab/pull/828";>#828</a>)</li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/XAMPPRocky/octocrab/commit/d381cc09db8db8e2a0ebbdfbdbf334c7e42f48a2";><code>d381cc0</code></a>
 chore: release v0.48.1 (<a 
href="https://redirect.github.com/XAMPPRocky/octocrab/issues/830";>#830</a>)</li>
   <li><a 
href="https://github.com/XAMPPRocky/octocrab/commit/41162f3dc1a335196acec3528cfe4e12450145c6";><code>41162f3</code></a>
 fix(build): don't fetch dependencies (<a 
href="https://redirect.github.com/XAMPPRocky/octocrab/issues/828";>#828</a>)</li>
   <li>See full diff in <a 
href="https://github.com/XAMPPRocky/octocrab/compare/v0.48.0...v0.48.1";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `git2` from 0.20.2 to 0.20.3
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/rust-lang/git2-rs/blob/git2-0.20.3/CHANGELOG.md";>git2's
 changelog</a>.</em></p>
   <blockquote>
   <h2>0.20.3 - 2025-12-06</h2>
   <p><a 
href="https://github.com/rust-lang/git2-rs/compare/git2-0.20.2...git2-0.20.3";>0.20.2...0.20.3</a></p>
   <h3>Changed</h3>
   <ul>
   <li>Bumped requirement to libgit2-sys 0.18.3, which updates libgit2 from 
1.9.0 to 1.9.2.
   <a 
href="https://redirect.github.com/rust-lang/git2-rs/pull/1197";>#1197</a></li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/rust-lang/git2-rs/commit/7cf345c4f7967b7da3c728db6766362e51540cbe";><code>7cf345c</code></a>
 Merge pull request <a 
href="https://redirect.github.com/rust-lang/git2-rs/issues/1197";>#1197</a> from 
ehuss/git2-0.20-br</li>
   <li><a 
href="https://github.com/rust-lang/git2-rs/commit/dd41077750fe30bf780c9e7f7ab4717d264e098d";><code>dd41077</code></a>
 Bump git2 to 0.20.3</li>
   <li><a 
href="https://github.com/rust-lang/git2-rs/commit/a6a58e2b0fd409ae33f2f6a68927ce62ebd114f0";><code>a6a58e2</code></a>
 Merge pull request <a 
href="https://redirect.github.com/rust-lang/git2-rs/issues/1195";>#1195</a> from 
ehuss/update-libgit2</li>
   <li>See full diff in <a 
href="https://github.com/rust-lang/git2-rs/compare/git2-0.20.2...git2-0.20.3";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `protox` from 0.9.0 to 0.9.1
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/andrewhickman/protox/blob/main/CHANGELOG.md";>protox's 
changelog</a>.</em></p>
   <blockquote>
   <h2><a 
href="https://github.com/andrewhickman/protox/compare/protox-v0.9.0...protox-v0.9.1";>0.9.1</a>
 - 2025-12-01</h2>
   <h3>Other</h3>
   <ul>
   <li>Remove a reference to <code>prost::DecodeError::new</code> which was 
removed in prost version 0.14.2</li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/andrewhickman/protox/commit/8a9e5a9b80e76a406c67c37b5ba08f321f851bd0";><code>8a9e5a9</code></a>
 chore: release v0.9.1 (<a 
href="https://redirect.github.com/andrewhickman/protox/issues/98";>#98</a>)</li>
   <li><a 
href="https://github.com/andrewhickman/protox/commit/c59341a387cb9389a934f8ddfef0a6f30e147cbb";><code>c59341a</code></a>
 Avoid relying on DecodeError::new</li>
   <li><a 
href="https://github.com/andrewhickman/protox/commit/eb42aa98ff46fbbffa046213584837d1eaa34283";><code>eb42aa9</code></a>
 Remove a couple of references to the package version which release-plz 
doesn'...</li>
   <li><a 
href="https://github.com/andrewhickman/protox/commit/de976dd83822651f875d17c1a04d24fb016aa3b9";><code>de976dd</code></a>
 Remove old reference to the BSD license</li>
   <li>See full diff in <a 
href="https://github.com/andrewhickman/protox/compare/protox-v0.9.0...protox-v0.9.1";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `ctor` from 0.6.1 to 0.6.3
   <details>
   <summary>Commits</summary>
   <ul>
   <li>See full diff in <a 
href="https://github.com/mmastrac/rust-ctor/commits";>compare view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `libc` from 0.2.177 to 0.2.178
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/rust-lang/libc/releases";>libc's releases</a>.</em></p>
   <blockquote>
   <h2>0.2.178</h2>
   <h3>Added</h3>
   <ul>
   <li>BSD: Add <code>issetugid</code> (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4744";>#4744</a>)</li>
   <li>Cygwin: Add missing utmp/x.h, grp.h, and stdio.h interfaces (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4827";>#4827</a>)</li>
   <li>Linux s390x musl: Add 
<code>__psw_t</code>/<code>fprefset_t</code>/<code>*context_t</code> (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4726";>#4726</a>)</li>
   <li>Linux, Android: Add definition for IUCLC (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4846";>#4846</a>)</li>
   <li>Linux, FreeBSD: Add <code>AT_HWCAP{3,4}</code> (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4734";>#4734</a>)</li>
   <li>Linux: Add definitions from linux/can/bcm.h (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4683";>#4683</a>)</li>
   <li>Linux: Add syscalls 451-469 for m68k (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4850";>#4850</a>)</li>
   <li>Linux: PowerPC: Add 'ucontext.h' definitions (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4696";>#4696</a>)</li>
   <li>NetBSD: Define <code>eventfd</code> (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4830";>#4830</a>)</li>
   <li>Newlib: Add missing constants from <code>unistd.h</code> (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4811";>#4811</a>)</li>
   <li>QNX NTO: Add <code>cfmakeraw</code> (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4704";>#4704</a>)</li>
   <li>QNX NTO: Add <code>cfsetspeed</code> (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4704";>#4704</a>)</li>
   <li>Redox: Add <code>getresgid</code> and <code>getresuid</code> (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4752";>#4752</a>)</li>
   <li>Redox: Add <code>setresgid</code> and <code>setresuid</code> (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4752";>#4752</a>)</li>
   <li>VxWorks: Add definitions from <code>select.h</code>, 
<code>stat.h</code>, <code>poll.h</code>, <code>ttycom.h</code>, 
<code>utsname.h</code>, <code>resource.h</code>, <code>mman.h</code>, 
<code>udp.h</code>, <code>in.h</code>, <code>in6.h</code>, <code>if.h</code>, 
<code>fnmatch.h</code>, and <code>sioLibCommon.h</code> (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4781";>#4781</a>)</li>
   <li>VxWorks: Add missing defines/functions needed by rust stdlib (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4779";>#4779</a>)</li>
   <li>WASI: Add more definitions for libstd (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4747";>#4747</a>)</li>
   </ul>
   <h3>Deprecated:</h3>
   <ul>
   <li>Apple: Deprecate <code>TIOCREMOTE</code> (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4764";>#4764</a>)</li>
   </ul>
   <h3>Fixed:</h3>
   <p>Note that there were a large number of fixes on NetBSD for this 
<code>libc</code> release, some of which include minor breakage.</p>
   <ul>
   <li>AIX: Change errno <code>EWOULDBLOCK</code> to make it an alias of 
<code>EAGAIN</code> (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4790";>#4790</a>)</li>
   <li>AIX: Resolve function comparison and <code>unnecessary_transmutes</code> 
warnings (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4780";>#4780</a>)</li>
   <li>Apple: Correct the value of <code>SF_SETTABLE</code> (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4764";>#4764</a>)</li>
   <li>DragonflyBSD: Fix the type of <code>mcontext_t.mc_fpregs</code> (<a 
href="">#</a>)</li>
   <li>EspIDF: Fix the duplicate definition of <code>gethostname</code> (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4773";>#4773</a>)</li>
   <li>L4Re: Update available pthread API (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4836";>#4836</a>)</li>
   <li>Linux: Correct the value of <code>NFT_MSG_MAX</code> (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4761";>#4761</a>)</li>
   <li>Linux: Remove incorrect <code>repr(align(8))</code> for 
<code>canxl_frame</code> (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4760";>#4760</a>)</li>
   <li>Make <code>eventfd</code> argument names match OS docs/headers (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4830";>#4830</a>)</li>
   <li>NetBSD: Account for upstream changes to ptrace with LWP (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4782";>#4782</a>)</li>
   <li>NetBSD: Correct <code>ipc_perm</code>, split from OpenBSD as 
<code>ipc.rs</code> (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4782";>#4782</a>)</li>
   <li>NetBSD: Correct a number of symbol link names (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4782";>#4782</a>)</li>
   <li>NetBSD: Correct the type of <code>kinfo_vmentry.kve_path</code> (<a 
href="">#</a>)</li>
   <li>NetBSD: Fix <code>uucred.cr_ngroups</code> from <code>int</code> to 
<code>short</code> (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4782";>#4782</a>)</li>
   <li>NetBSD: Fix the type of <code>kevent.udata</code> (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4782";>#4782</a>)</li>
   <li>NetBSD: Fix the type of <code>mcontext_t.__fpregs</code> (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4782";>#4782</a>)</li>
   <li>NetBSD: Fix the value of <code>PT_SUSPEND</code> (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4782";>#4782</a>)</li>
   <li>NetBSD: Fix the values of FNM_* constants (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4782";>#4782</a>)</li>
   <li>NetBSD: Increase the size of <code>sockaddr_dl.sdl_data</code> from 12 
to 24 (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4782";>#4782</a>)</li>
   <li>NetBSD: Introduce <code>if_.rs</code>, fix the definition of 
<code>ifreq</code> (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4782";>#4782</a>)</li>
   <li>NetBSD: Introduce <code>time.rs</code>, fix the values of 
<code>CLOCK_*_CPUTIME_ID</code> (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4782";>#4782</a>)</li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/rust-lang/libc/blob/0.2.178/CHANGELOG.md";>libc's 
changelog</a>.</em></p>
   <blockquote>
   <h2><a 
href="https://github.com/rust-lang/libc/compare/0.2.177...0.2.178";>0.2.178</a> 
- 2025-12-01</h2>
   <h3>Added</h3>
   <ul>
   <li>BSD: Add <code>issetugid</code> (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4744";>#4744</a>)</li>
   <li>Cygwin: Add missing utmp/x.h, grp.h, and stdio.h interfaces (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4827";>#4827</a>)</li>
   <li>Linux s390x musl: Add 
<code>__psw_t</code>/<code>fprefset_t</code>/<code>*context_t</code> (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4726";>#4726</a>)</li>
   <li>Linux, Android: Add definition for IUCLC (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4846";>#4846</a>)</li>
   <li>Linux, FreeBSD: Add <code>AT_HWCAP{3,4}</code> (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4734";>#4734</a>)</li>
   <li>Linux: Add definitions from linux/can/bcm.h (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4683";>#4683</a>)</li>
   <li>Linux: Add syscalls 451-469 for m68k (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4850";>#4850</a>)</li>
   <li>Linux: PowerPC: Add 'ucontext.h' definitions (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4696";>#4696</a>)</li>
   <li>NetBSD: Define <code>eventfd</code> (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4830";>#4830</a>)</li>
   <li>Newlib: Add missing constants from <code>unistd.h</code> (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4811";>#4811</a>)</li>
   <li>QNX NTO: Add <code>cfmakeraw</code> (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4704";>#4704</a>)</li>
   <li>QNX NTO: Add <code>cfsetspeed</code> (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4704";>#4704</a>)</li>
   <li>Redox: Add <code>getresgid</code> and <code>getresuid</code> (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4752";>#4752</a>)</li>
   <li>Redox: Add <code>setresgid</code> and <code>setresuid</code> (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4752";>#4752</a>)</li>
   <li>VxWorks: Add definitions from <code>select.h</code>, 
<code>stat.h</code>, <code>poll.h</code>, <code>ttycom.h</code>, 
<code>utsname.h</code>, <code>resource.h</code>, <code>mman.h</code>, 
<code>udp.h</code>, <code>in.h</code>, <code>in6.h</code>, <code>if.h</code>, 
<code>fnmatch.h</code>, and <code>sioLibCommon.h</code> (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4781";>#4781</a>)</li>
   <li>VxWorks: Add missing defines/functions needed by rust stdlib (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4779";>#4779</a>)</li>
   <li>WASI: Add more definitions for libstd (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4747";>#4747</a>)</li>
   </ul>
   <h3>Deprecated:</h3>
   <ul>
   <li>Apple: Deprecate <code>TIOCREMOTE</code> (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4764";>#4764</a>)</li>
   </ul>
   <h3>Fixed:</h3>
   <p>Note that there were a large number of fixes on NetBSD for this 
<code>libc</code> release, some of which include minor breakage.</p>
   <ul>
   <li>AIX: Change errno <code>EWOULDBLOCK</code> to make it an alias of 
<code>EAGAIN</code> (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4790";>#4790</a>)</li>
   <li>AIX: Resolve function comparison and <code>unnecessary_transmutes</code> 
warnings (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4780";>#4780</a>)</li>
   <li>Apple: Correct the value of <code>SF_SETTABLE</code> (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4764";>#4764</a>)</li>
   <li>DragonflyBSD: Fix the type of <code>mcontext_t.mc_fpregs</code> (<a 
href="">#</a>)</li>
   <li>EspIDF: Fix the duplicate definition of <code>gethostname</code> (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4773";>#4773</a>)</li>
   <li>L4Re: Update available pthread API (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4836";>#4836</a>)</li>
   <li>Linux: Correct the value of <code>NFT_MSG_MAX</code> (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4761";>#4761</a>)</li>
   <li>Linux: Remove incorrect <code>repr(align(8))</code> for 
<code>canxl_frame</code> (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4760";>#4760</a>)</li>
   <li>Make <code>eventfd</code> argument names match OS docs/headers (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4830";>#4830</a>)</li>
   <li>NetBSD: Account for upstream changes to ptrace with LWP (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4782";>#4782</a>)</li>
   <li>NetBSD: Correct <code>ipc_perm</code>, split from OpenBSD as 
<code>ipc.rs</code> (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4782";>#4782</a>)</li>
   <li>NetBSD: Correct a number of symbol link names (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4782";>#4782</a>)</li>
   <li>NetBSD: Correct the type of <code>kinfo_vmentry.kve_path</code> (<a 
href="">#</a>)</li>
   <li>NetBSD: Fix <code>uucred.cr_ngroups</code> from <code>int</code> to 
<code>short</code> (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4782";>#4782</a>)</li>
   <li>NetBSD: Fix the type of <code>kevent.udata</code> (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4782";>#4782</a>)</li>
   <li>NetBSD: Fix the type of <code>mcontext_t.__fpregs</code> (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4782";>#4782</a>)</li>
   <li>NetBSD: Fix the value of <code>PT_SUSPEND</code> (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4782";>#4782</a>)</li>
   <li>NetBSD: Fix the values of FNM_* constants (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4782";>#4782</a>)</li>
   <li>NetBSD: Increase the size of <code>sockaddr_dl.sdl_data</code> from 12 
to 24 (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4782";>#4782</a>)</li>
   <li>NetBSD: Introduce <code>if_.rs</code>, fix the definition of 
<code>ifreq</code> (<a 
href="https://redirect.github.com/rust-lang/libc/pull/4782";>#4782</a>)</li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/rust-lang/libc/commit/2b95cbe1cecd28ab03d689b34c2696d70b65ff27";><code>2b95cbe</code></a>
 chore: release libc 0.2.178</li>
   <li><a 
href="https://github.com/rust-lang/libc/commit/bc25dfca2960fcd6bde9636e9fe9c87295765a5e";><code>bc25dfc</code></a>
 NetBSD: Only skip <code>sockaddr_dl</code> on NetBSD9</li>
   <li><a 
href="https://github.com/rust-lang/libc/commit/887133e45ee709ff941f4d07f1069489a81aa531";><code>887133e</code></a>
 add syscalls 451-469 for m68k linux</li>
   <li><a 
href="https://github.com/rust-lang/libc/commit/3cfeee46c2f28121771747f2e0bf9b5432a0eb29";><code>3cfeee4</code></a>
 build(deps): bump actions/checkout from 5 to 6</li>
   <li><a 
href="https://github.com/rust-lang/libc/commit/999b4203ee3c450df6f6ef781fadd81fe51e7e78";><code>999b420</code></a>
 linux, android: Add definition for IUCLC</li>
   <li><a 
href="https://github.com/rust-lang/libc/commit/ae6df796e2c918726ffafb7878b621ffad6a2bb7";><code>ae6df79</code></a>
 Define eventfd on NetBSD</li>
   <li><a 
href="https://github.com/rust-lang/libc/commit/03b7438253fc4f111bf7ef3ca44902538dcce948";><code>03b7438</code></a>
 Make eventfd argument names match OS docs/headers</li>
   <li><a 
href="https://github.com/rust-lang/libc/commit/9ba7c90662818c9bd6733899e4718816fe8b6394";><code>9ba7c90</code></a>
 cygwin: Add missing utmp/x.h, grp.h, and stdio.h interfaces</li>
   <li><a 
href="https://github.com/rust-lang/libc/commit/5d284b0afd113ea6e92a5c7d2c1c93d1b7a60d07";><code>5d284b0</code></a>
 Fix test for cygwin</li>
   <li><a 
href="https://github.com/rust-lang/libc/commit/7516d382af0715deb7868f88bef4b3d36412062a";><code>7516d38</code></a>
 ci: Update <code>style.py</code> to work with visibility on enums</li>
   <li>Additional commits viewable in <a 
href="https://github.com/rust-lang/libc/compare/0.2.177...0.2.178";>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]

Reply via email to