dependabot[bot] opened a new pull request, #168:
URL: https://github.com/apache/avro-rs/pull/168

   Bumps [darling](https://github.com/TedDriggs/darling) from 0.20.10 to 
0.20.11.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/TedDriggs/darling/releases";>darling's 
releases</a>.</em></p>
   <blockquote>
   <h2>v0.20.11</h2>
   <ul>
   <li>Support <code>#[darling(with = ...)]</code> on the <code>data</code> 
field when deriving <code>FromDeriveInput</code>. This allows the use of 
simpler receiver types, such as a <code>Vec</code> of enum variants.</li>
   <li>Bump version of <code>proc-macro2</code> to 1.0.86.</li>
   <li>Accept closures for <code>#[darling(with = ...)]</code> on fields in 
<code>FromDeriveInput</code>, <code>FromMeta</code>, <code>FromField</code>, 
etc. <a 
href="https://redirect.github.com/TedDriggs/darling/issues/309";>#309</a></li>
   <li>Add <code>darling::util::Callable</code> to accept a path or closure as 
a meta-item expression</li>
   <li>Add <code>#[darling(from_word = ...)]</code> and 
<code>#[darling(from_none = ...)]</code> to control shorthand and fallback 
behaviors for structs and enums deriving <code>FromMeta</code> <a 
href="https://redirect.github.com/TedDriggs/darling/issues/320";>#320</a></li>
   <li>Add <code>FromMeta</code> impl for <code>syn::ExprRange</code> <a 
href="https://github.com/TedDriggs/issues/329";>#329</a></li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/TedDriggs/darling/blob/master/CHANGELOG.md";>darling's 
changelog</a>.</em></p>
   <blockquote>
   <h2>v0.20.11 (March 28, 2025)</h2>
   <ul>
   <li>Support <code>#[darling(with = ...)]</code> on the <code>data</code> 
field when deriving <code>FromDeriveInput</code>. This allows the use of 
simpler receiver types, such as a <code>Vec</code> of enum variants.</li>
   <li>Bump version of <code>proc-macro2</code> to 1.0.86.</li>
   <li>Accept closures for <code>#[darling(with = ...)]</code> on fields in 
<code>FromDeriveInput</code>, <code>FromMeta</code>, <code>FromField</code>, 
etc. <a 
href="https://redirect.github.com/TedDriggs/darling/issues/309";>#309</a></li>
   <li>Add <code>darling::util::Callable</code> to accept a path or closure as 
a meta-item expression</li>
   <li>Add <code>#[darling(from_word = ...)]</code> and 
<code>#[darling(from_none = ...)]</code> to control shorthand and fallback 
behaviors for structs and enums deriving <code>FromMeta</code> <a 
href="https://redirect.github.com/TedDriggs/darling/issues/320";>#320</a></li>
   <li>Add <code>FromMeta</code> impl for <code>syn::ExprRange</code> <a 
href="https://github.com/TedDriggs/issues/329";>#329</a></li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/TedDriggs/darling/commit/82a51e0b65b158de02ffb5d753ea4cd03529743b";><code>82a51e0</code></a>
 Bump version to 0.20.11</li>
   <li><a 
href="https://github.com/TedDriggs/darling/commit/61834da6a27ed75306a6d1aaf7db7c425f9d185c";><code>61834da</code></a>
 Impl FromMeta for syn::ExprRange (<a 
href="https://redirect.github.com/TedDriggs/darling/issues/332";>#332</a>)</li>
   <li><a 
href="https://github.com/TedDriggs/darling/commit/f18d5d53883ee62377f2374bfb272b8d67e03754";><code>f18d5d5</code></a>
 Add explicit implementations of <code>FromMeta</code> methods to 
<code>SpannedValue</code> and `Ove...</li>
   <li><a 
href="https://github.com/TedDriggs/darling/commit/a6e5f524b234a5694b89549e11f2aed789c9461e";><code>a6e5f52</code></a>
 Move generation of from_word body for unit variants</li>
   <li><a 
href="https://github.com/TedDriggs/darling/commit/c8c82015214cdf4289e68da07482db267e77b840";><code>c8c8201</code></a>
 Add from_word and from_none options</li>
   <li><a 
href="https://github.com/TedDriggs/darling/commit/3a848ca2821ee34973f0d7407c1860a57d418f84";><code>3a848ca</code></a>
 Extract path-or-closure to darling::util::Callable</li>
   <li><a 
href="https://github.com/TedDriggs/darling/commit/fa552e4fd74319dc7c5a03a2b9ed28bfd33c61c4";><code>fa552e4</code></a>
 Error if <code>attrs</code> field is declared and <code>forward_attrs</code> 
is missing.</li>
   <li><a 
href="https://github.com/TedDriggs/darling/commit/af24bdf87a824eadb365c32441171bf2216ddf6e";><code>af24bdf</code></a>
 Reject extra data passed to unit enum variants</li>
   <li><a 
href="https://github.com/TedDriggs/darling/commit/b7a248f8ee4503a949de0730170934587dccfb8e";><code>b7a248f</code></a>
 Fix clippy violations by removing unnecessary iifetimes</li>
   <li><a 
href="https://github.com/TedDriggs/darling/commit/b746a0c4a92b3c357338c430bdfd8ba9f3eafab6";><code>b746a0c</code></a>
 Accept a closure for <code>with</code> in lieu of a path for fields (<a 
href="https://redirect.github.com/TedDriggs/darling/issues/310";>#310</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/TedDriggs/darling/compare/v0.20.10...v0.20.11";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=darling&package-manager=cargo&previous-version=0.20.10&new-version=0.20.11)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   <details>
   <summary>Dependabot commands and options</summary>
   <br />
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show <dependency name> ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   </details>


-- 
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: dev-unsubscr...@avro.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to