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 commands and options
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)
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.
## 📋 Pull Request Information
**Original PR:** https://github.com/LGUG2Z/komorebi/pull/575
**Author:** [@dependabot[bot]](https://github.com/apps/dependabot)
**Created:** 11/6/2023
**Status:** ❌ Closed
**Base:** `master` ← **Head:** `dependabot/cargo/syn-2.0.38`
---
### 📝 Commits (1)
- [`ae70a8c`](https://github.com/LGUG2Z/komorebi/commit/ae70a8c046c2e2444193bb20efb94f91cddb4135) chore(deps): bump syn from 1.0.109 to 2.0.38
### 📊 Changes
**2 files changed** (+2 additions, -2 deletions)
<details>
<summary>View changed files</summary>
📝 `Cargo.lock` (+1 -1)
📝 `derive-ahk/Cargo.toml` (+1 -1)
</details>
### 📄 Description
Bumps [syn](https://github.com/dtolnay/syn) from 1.0.109 to 2.0.38.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/dtolnay/syn/releases">syn's releases</a>.</em></p>
<blockquote>
<h2>2.0.38</h2>
<ul>
<li>Fix <em>"method 'peek' has an incompatible type for trait"</em> error when defining <code>bool</code> as a custom keyword (<a href="https://redirect.github.com/dtolnay/syn/issues/1518">#1518</a>, thanks <a href="https://github.com/Vanille-N"><code>@Vanille-N</code></a>)</li>
</ul>
<h2>2.0.37</h2>
<ul>
<li>Work around incorrect future compatibility warning in rustc 1.74.0-nightly</li>
</ul>
<h2>2.0.36</h2>
<ul>
<li>Restore compatibility with <code>--generate-link-to-definition</code> documentation builds (<a href="https://redirect.github.com/dtolnay/syn/issues/1514">#1514</a>)</li>
</ul>
<h2>2.0.35</h2>
<ul>
<li>Make rust-analyzer produce preferred brackets for invocations of <code>Token!</code> macro (<a href="https://redirect.github.com/dtolnay/syn/issues/1510">#1510</a>, <a href="https://redirect.github.com/dtolnay/syn/issues/1512">#1512</a>)</li>
</ul>
<h2>2.0.34</h2>
<ul>
<li>Documentation improvements</li>
</ul>
<h2>2.0.33</h2>
<ul>
<li>Special handling for the <code>(/*ERROR*/)</code> placeholder that rustc uses for macros that fail to expand</li>
</ul>
<h2>2.0.32</h2>
<ul>
<li>Add <code>Path::require_ident</code> accessor (<a href="https://redirect.github.com/dtolnay/syn/issues/1496">#1496</a>, thanks <a href="https://github.com/Fancyflame"><code>@Fancyflame</code></a>)</li>
</ul>
<h2>2.0.31</h2>
<ul>
<li>Parse generics and where-clause on const items (<a href="https://redirect.github.com/rust-lang/rust/issues/113521">rust-lang/rust#113521</a>)</li>
</ul>
<h2>2.0.30</h2>
<ul>
<li>Parse unnamed struct/union type syntax (<a href="https://redirect.github.com/rust-lang/rust/issues/49804">rust-lang/rust#49804</a>)</li>
</ul>
<h2>2.0.29</h2>
<ul>
<li>Partially work around rust-analyzer bug (<a href="https://redirect.github.com/rust-lang/rust-analyzer/issues/9911">rust-lang/rust-analyzer#9911</a>)</li>
</ul>
<h2>2.0.28</h2>
<ul>
<li>Fix inconsistency between full and non-full expression parse errors (<a href="https://redirect.github.com/dtolnay/syn/issues/1491">#1491</a>)</li>
</ul>
<h2>2.0.27</h2>
<ul>
<li>Documentation improvements (thanks <a href="https://github.com/GuillaumeGomez"><code>@GuillaumeGomez</code></a>)</li>
</ul>
<h2>2.0.26</h2>
<ul>
<li>Implement <code>Spanned</code> for <code>QSelf</code> (<a href="https://redirect.github.com/dtolnay/syn/issues/1465">#1465</a>)</li>
</ul>
<h2>2.0.25</h2>
<ul>
<li>Support single identifier as unbraced const generic argument (<a href="https://redirect.github.com/dtolnay/syn/issues/1483">#1483</a>)</li>
<li>Produce error message when LitStr::parse is used on a suffixed string literal (<a href="https://redirect.github.com/dtolnay/syn/issues/1484">#1484</a>)</li>
</ul>
<h2>2.0.24</h2>
<ul>
<li>Fix duplication of braces around const generic argument in non-full mode (<a href="https://redirect.github.com/dtolnay/syn/issues/1482">#1482</a>)</li>
</ul>
<h2>2.0.23</h2>
<ul>
<li>Preserve attributes on verbatim Item in statement position (<a href="https://redirect.github.com/dtolnay/syn/issues/1476">#1476</a>)</li>
<li>Support generic_const_exprs where-clauses such as <code>where [(); { T::COUNT }]:</code> in non-"full" mode (<a href="https://redirect.github.com/dtolnay/syn/issues/1478">#1478</a>)</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/dtolnay/syn/commit/43632bfb6c78ee1f952645a268ab1ac4af162977"><code>43632bf</code></a> Release 2.0.38</li>
<li><a href="https://github.com/dtolnay/syn/commit/abd2c214b44da64a5e420d72919308300eebc23d"><code>abd2c21</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/syn/issues/1518">#1518</a> from Vanille-N/master</li>
<li><a href="https://github.com/dtolnay/syn/commit/6701e6077e15013ef34b15e3ffdae2657e499d83"><code>6701e60</code></a> Absolute path to <code>bool</code> in <code>custom_punctuation.rs</code></li>
<li><a href="https://github.com/dtolnay/syn/commit/7313d242398111423f046386aa0a75548f63d236"><code>7313d24</code></a> Resolve single_match_else pedantic clippy lint in code generator</li>
<li><a href="https://github.com/dtolnay/syn/commit/67ab64f3c09e17b23493c7cda498e7edb8830f21"><code>67ab64f</code></a> Include unexpected token in the test failure message</li>
<li><a href="https://github.com/dtolnay/syn/commit/137ae33486de3f2652487f8f64436ad1429df496"><code>137ae33</code></a> Check no remaining token after the first literal</li>
<li><a href="https://github.com/dtolnay/syn/commit/258e9e8a11d188c1ee1ffb2b069819239999f9ac"><code>258e9e8</code></a> Ignore single_match_else pedantic clippy lint in test</li>
<li><a href="https://github.com/dtolnay/syn/commit/92fd50ee8cb52968d9c66fbe6d67638c1f838e26"><code>92fd50e</code></a> Test docs.rs documentation build in CI</li>
<li><a href="https://github.com/dtolnay/syn/commit/96810880f3acbb63415cf4684ab42c82edc31e2a"><code>9681088</code></a> Release 2.0.37</li>
<li><a href="https://github.com/dtolnay/syn/commit/fbe3bc2ddcee4192f95697a953330d031030f5a1"><code>fbe3bc2</code></a> Work around unknown_lints warning on rustc older than 1.64</li>
<li>Additional commits viewable in <a href="https://github.com/dtolnay/syn/compare/1.0.109...2.0.38">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>
---
<sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
📋 Pull Request Information
Original PR: https://github.com/LGUG2Z/komorebi/pull/575
Author: @dependabot[bot]
Created: 11/6/2023
Status: ❌ Closed
Base:
master← Head:dependabot/cargo/syn-2.0.38📝 Commits (1)
ae70a8cchore(deps): bump syn from 1.0.109 to 2.0.38📊 Changes
2 files changed (+2 additions, -2 deletions)
View changed files
📝
Cargo.lock(+1 -1)📝
derive-ahk/Cargo.toml(+1 -1)📄 Description
Bumps syn from 1.0.109 to 2.0.38.
Release notes
Sourced from syn's releases.
... (truncated)
Commits
43632bfRelease 2.0.38abd2c21Merge pull request #1518 from Vanille-N/master6701e60Absolute path toboolincustom_punctuation.rs7313d24Resolve single_match_else pedantic clippy lint in code generator67ab64fInclude unexpected token in the test failure message137ae33Check no remaining token after the first literal258e9e8Ignore single_match_else pedantic clippy lint in test92fd50eTest docs.rs documentation build in CI9681088Release 2.0.37fbe3bc2Work around unknown_lints warning on rustc older than 1.64Dependabot 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 commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill 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 versionwill 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 dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.