Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): bump crossterm from 0.27.0 to 0.28.1 (#62)
Bumps [crossterm](https://github.com/crossterm-rs/crossterm) from 0.27.0 to 0.28.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/crossterm-rs/crossterm/releases">crossterm's releases</a>.</em></p> <blockquote> <h2>0.28</h2> <h1>Version 0.28</h1> <h2>Added ⭐</h2> <ul> <li>Capture double click mouse events on windows (<a href="https://redirect.github.com/crossterm-rs/crossterm/issues/826">#826</a>)</li> <li>(De)serialize Reset color (<a href="https://redirect.github.com/crossterm-rs/crossterm/issues/824">#824</a>)</li> <li>Add functions to allow constructing <code>Attributes</code> in a const context (<a href="https://redirect.github.com/crossterm-rs/crossterm/issues/817">#817</a>)</li> <li>Implement <code>Display</code> for <code>KeyCode</code> and <code>KeyModifiers</code> (<a href="https://redirect.github.com/crossterm-rs/crossterm/issues/862">#862</a>)</li> </ul> <h2>Changed ⚙️</h2> <ul> <li>Use Rustix by default instead of libc. Libc can be re-enabled if necessary with the <code>libc</code> feature flag (<a href="https://redirect.github.com/crossterm-rs/crossterm/issues/892">#892</a>)</li> <li><code>FileDesc</code> now requires a lifetime annotation.</li> <li>Improve available color detection (<a href="https://redirect.github.com/crossterm-rs/crossterm/issues/885">#885</a>)</li> <li>Speed up <code>SetColors</code> by ~15-25% (<a href="https://redirect.github.com/crossterm-rs/crossterm/issues/879">#879</a>)</li> <li>Remove unsafe and unnecessary size argument from <code>FileDesc::read()</code> (<a href="https://redirect.github.com/crossterm-rs/crossterm/issues/821">#821</a>)</li> </ul> <h2>Breaking⚠️ </h2> <ul> <li>Fix duplicate bit masks for caps lock and num lock (<a href="https://redirect.github.com/crossterm-rs/crossterm/issues/863">#863</a>). This breaks serialization of <code>KeyEventState</code></li> </ul> <p><a href="https://github.com/rustco"><code>@rustco</code></a> <a href="https://github.com/timstr"><code>@timstr</code></a> <a href="https://github.com/illiteratewriter"><code>@illiteratewriter</code></a> <a href="https://github.com/heaths"><code>@heaths</code></a> <a href="https://github.com/joshka"><code>@joshka</code></a> <a href="https://github.com/aschey"><code>@aschey</code></a> <a href="https://github.com/joshka"><code>@joshka</code></a> <a href="https://github.com/martinvonz"><code>@martinvonz</code></a> <a href="https://github.com/linrongbin16"><code>@linrongbin16</code></a> <a href="https://github.com/rtczza"><code>@rtczza</code></a> <a href="https://github.com/sjakk"><code>@sjakk</code></a> <a href="https://github.com/kierdavis"><code>@kierdavis</code></a> <a href="https://github.com/Destroy666x"><code>@Destroy666x</code></a> <a href="https://github.com/stphnt"><code>@stphnt</code></a> <a href="https://github.com/5donuts"><code>@5donuts</code></a> <a href="https://github.com/kdheepak"><code>@kdheepak</code></a> <a href="https://github.com/valerii15298"><code>@valerii15298</code></a> <a href="https://github.com/javaLux"><code>@javaLux</code></a> <a href="https://github.com/alt-art"><code>@alt-art</code></a> <a href="https://github.com/jumbledFox"><code>@jumbledFox</code></a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/crossterm-rs/crossterm/blob/master/CHANGELOG.md">crossterm's changelog</a>.</em></p> <blockquote> <h1>Version 0.28.1</h1> <h2>Fixed 🐛</h2> <ul> <li>Fix broken build on linux when using <code>use-dev-tty</code> with (<a href="https://redirect.github.com/crossterm-rs/crossterm/issues/906">#906</a>)</li> </ul> <h2>Breaking⚠️ </h2> <ul> <li>Fix desync with mio and signalhook between repo and published crate. (upgrade to mio 1.0)</li> </ul> <h1>Version 0.28</h1> <h2>Added ⭐</h2> <ul> <li>Capture double click mouse events on windows (<a href="https://redirect.github.com/crossterm-rs/crossterm/issues/826">#826</a>)</li> <li>(De)serialize Reset color (<a href="https://redirect.github.com/crossterm-rs/crossterm/issues/824">#824</a>)</li> <li>Add functions to allow constructing <code>Attributes</code> in a const context (<a href="https://redirect.github.com/crossterm-rs/crossterm/issues/817">#817</a>)</li> <li>Implement <code>Display</code> for <code>KeyCode</code> and <code>KeyModifiers</code> (<a href="https://redirect.github.com/crossterm-rs/crossterm/issues/862">#862</a>)</li> </ul> <h2>Changed ⚙️</h2> <ul> <li>Use Rustix by default instead of libc. Libc can be re-enabled if necessary with the <code>libc</code> feature flag (<a href="https://redirect.github.com/crossterm-rs/crossterm/issues/892">#892</a>)</li> <li><code>FileDesc</code> now requires a lifetime annotation.</li> <li>Improve available color detection (<a href="https://redirect.github.com/crossterm-rs/crossterm/issues/885">#885</a>)</li> <li>Speed up <code>SetColors</code> by ~15-25% (<a href="https://redirect.github.com/crossterm-rs/crossterm/issues/879">#879</a>)</li> <li>Remove unsafe and unnecessary size argument from <code>FileDesc::read()</code> (<a href="https://redirect.github.com/crossterm-rs/crossterm/issues/821">#821</a>)</li> </ul> <h2>Breaking⚠️ </h2> <ul> <li>Fix duplicate bit masks for caps lock and num lock (<a href="https://redirect.github.com/crossterm-rs/crossterm/issues/863">#863</a>). This breaks serialization of <code>KeyEventState</code></li> </ul> <h1>Version 0.27.1</h1> <h2>Added ⭐</h2> <ul> <li>Add support for (de)serializing <code>Reset</code> <code>Color</code></li> </ul> <h1>Version 0.27</h1> <h2>Added ⭐</h2> <ul> <li>Add <code>NO_COLOR</code> support (<a href="https://no-color.org/">https://no-color.org/</a>)</li> <li>Add option to force overwrite <code>NO_COLOR</code> (<a href="https://redirect.github.com/crossterm-rs/crossterm/issues/802">#802</a>)</li> <li>Add support for scroll left/right events on windows and unix systems (<a href="https://redirect.github.com/crossterm-rs/crossterm/issues/788">#788</a>).</li> <li>Add <code>window_size</code> function to fetch pixel width/height of screen for more sophisticated rendering in terminals.</li> <li>Add support for deserializing hex color strings to <code>Color</code> e.g #fffff.</li> </ul> <h2>Changed ⚙️</h2> <ul> <li>Make the events module an optional feature <code>events</code> (to make crossterm more lightweight) (<a href="https://redirect.github.com/crossterm-rs/crossterm/issues/776">#776</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/crossterm-rs/crossterm/commits">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=crossterm&package-manager=cargo&previous-version=0.27.0&new-version=0.28.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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 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> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information