dependabot[bot] opened a new pull request, #223: URL: https://github.com/apache/avro-rs/pull/223
Bumps [darling](https://github.com/TedDriggs/darling) from 0.20.11 to 0.21.0. <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.21.0</h2> <ul> <li>Potentially breaking: Emit error when an attribute path is present in both <code>attributes</code> and <code>forward_attrs</code>. <a href="https://redirect.github.com/TedDriggs/darling/issues/336">#336</a></li> <li>Support parsing attributes which contain keywords <a href="https://redirect.github.com/TedDriggs/darling/issues/238">#238</a></li> <li>Add <code>SpannedValue::into_inner</code> <a href="https://redirect.github.com/TedDriggs/darling/issues/342">#342</a></li> <li>Add <code>#[darling(derive_syn_parse)]</code> to also impl <code>syn::parse::Parse</code> when deriving <code>FromMeta</code> <a href="https://redirect.github.com/TedDriggs/darling/issues/285">#285</a></li> <li>Make <code>impl FromMeta for syn::TypePath</code> support both quote-wrapped and bare values <a href="https://redirect.github.com/TedDriggs/darling/issues/351">#351</a></li> <li>Add <code>util::PreservedStrExpr</code> <a href="https://redirect.github.com/TedDriggs/darling/pull/346">#346</a></li> <li>Impl <code>UsesTypeParams</code> and <code>UsesLifetimes</code> for <code>WithOriginal</code> <a href="https://redirect.github.com/TedDriggs/darling/issues/215">#215</a></li> <li>Update error message emitted by <code><() as FromMeta>::from_list</code> to allow use of <code>()</code> as a <code>#[darling(flatten)]</code> target <a href="https://redirect.github.com/TedDriggs/darling/issues/353">#353</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.21.0 (July 10, 2025)</h2> <ul> <li>Potentially breaking: Emit error when an attribute path is present in both <code>attributes</code> and <code>forward_attrs</code>. <a href="https://redirect.github.com/TedDriggs/darling/issues/336">#336</a></li> <li>Support parsing attributes which contain keywords <a href="https://redirect.github.com/TedDriggs/darling/issues/238">#238</a></li> <li>Add <code>SpannedValue::into_inner</code> <a href="https://redirect.github.com/TedDriggs/darling/issues/342">#342</a></li> <li>Add <code>#[darling(derive_syn_parse)]</code> to also impl <code>syn::parse::Parse</code> when deriving <code>FromMeta</code> <a href="https://redirect.github.com/TedDriggs/darling/issues/285">#285</a></li> <li>Make <code>impl FromMeta for syn::TypePath</code> support both quote-wrapped and bare values <a href="https://redirect.github.com/TedDriggs/darling/issues/351">#351</a></li> <li>Add <code>util::PreservedStrExpr</code> <a href="https://redirect.github.com/TedDriggs/darling/pull/346">#346</a></li> <li>Impl <code>UsesTypeParams</code> and <code>UsesLifetimes</code> for <code>WithOriginal</code> <a href="https://redirect.github.com/TedDriggs/darling/issues/215">#215</a></li> <li>Update error message emitted by <code><() as FromMeta>::from_list</code> to allow use of <code>()</code> as a <code>#[darling(flatten)]</code> target <a href="https://redirect.github.com/TedDriggs/darling/issues/353">#353</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/TedDriggs/darling/commit/3c17242883c27268275fdd32af697ccc987bd0c5"><code>3c17242</code></a> Bump version to 0.21.0</li> <li><a href="https://github.com/TedDriggs/darling/commit/cd5da98002234f2ae6b38f01eb1e1326115b2436"><code>cd5da98</code></a> Update CHANGELOG</li> <li><a href="https://github.com/TedDriggs/darling/commit/a3f7bb15eaa9220e7a55a1101a4d5e520aa1ed38"><code>a3f7bb1</code></a> impl <code>from_list</code> for <code>()</code> (<a href="https://redirect.github.com/TedDriggs/darling/issues/354">#354</a>)</li> <li><a href="https://github.com/TedDriggs/darling/commit/37ddb0561891b87811512ee135a59aa210198eec"><code>37ddb05</code></a> Update changelog</li> <li><a href="https://github.com/TedDriggs/darling/commit/976224595a42ca6c52cd9744a2f8909d40a6b84a"><code>9762245</code></a> Impl UsesTypeParams and UsesLifetimes for WithOriginal</li> <li><a href="https://github.com/TedDriggs/darling/commit/ec867c25e145e3ddbfa5b23c5a8b3aa4814af7de"><code>ec867c2</code></a> Trying again to avoid duplicate CI tasks</li> <li><a href="https://github.com/TedDriggs/darling/commit/15be7b32060e5a1a89e4f06ba17709e0f96d68c9"><code>15be7b3</code></a> NFC: Replace some <code>syn</code> paths with use</li> <li><a href="https://github.com/TedDriggs/darling/commit/366d53d65b4e32fca29c1f035fa632e7aad7aa3c"><code>366d53d</code></a> Avoid duplicate CI runs on pushes that become PRs</li> <li><a href="https://github.com/TedDriggs/darling/commit/09f6219433501bd5a75c677683d3dba7d42ca8e6"><code>09f6219</code></a> Add test for flatten behavior with multiple errors</li> <li><a href="https://github.com/TedDriggs/darling/commit/aff17ba27f931ccf984eb55683f6f376ba77791d"><code>aff17ba</code></a> Add <code>syn::parse::Parse</code> support for <code>FromMeta</code> derive macro (<a href="https://redirect.github.com/TedDriggs/darling/issues/350">#350</a>)</li> <li>Additional commits viewable in <a href="https://github.com/TedDriggs/darling/compare/v0.20.11...v0.21.0">compare view</a></li> </ul> </details> <br /> [](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