mirror of
https://github.com/ratatui/ratatui.git
synced 2025-09-27 04:50:46 +00:00
build(deps): bump hashbrown from 0.15.5 to 0.16.0 (#2084)
Bumps [hashbrown](https://github.com/rust-lang/hashbrown) from 0.15.5 to 0.16.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/hashbrown/releases">hashbrown's releases</a>.</em></p> <blockquote> <h2>v0.16.0</h2> <h3>Changed</h3> <ul> <li>Bump foldhash, the default hasher, to 0.2.0.</li> <li>Replaced <code>DefaultHashBuilder</code> with a newtype wrapper around <code>foldhash</code> instead of re-exporting it directly.</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md">hashbrown's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/rust-lang/hashbrown/compare/v0.15.5...v0.16.0">0.16.0</a> - 2025-08-28</h2> <h3>Changed</h3> <ul> <li>Bump foldhash, the default hasher, to 0.2.0.</li> <li>Replaced <code>DefaultHashBuilder</code> with a newtype wrapper around <code>foldhash</code> instead of re-exporting it directly.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="8d4def0edc
"><code>8d4def0</code></a> Merge pull request <a href="https://redirect.github.com/rust-lang/hashbrown/issues/643">#643</a> from cuviper/newtype-hasher</li> <li><a href="e0f404cc0b
"><code>e0f404c</code></a> use <code>feature(hasher_prefixfree_extras)</code></li> <li><a href="95ffed34ed
"><code>95ffed3</code></a> Change <code>DefaultHashBuilder</code> to an opaque newtype</li> <li><a href="bf35a11329
"><code>bf35a11</code></a> Merge pull request <a href="https://redirect.github.com/rust-lang/hashbrown/issues/641">#641</a> from hoxxep/foldhash-0.2</li> <li><a href="e2a634b37f
"><code>e2a634b</code></a> Merge pull request <a href="https://redirect.github.com/rust-lang/hashbrown/issues/642">#642</a> from heiher/loong-simd-types</li> <li><a href="88794e7fc5
"><code>88794e7</code></a> loongarch64: Use unified data types for SIMD intrinsics</li> <li><a href="b22dd85cc3
"><code>b22dd85</code></a> perf: Bump foldhash to 0.2.0</li> <li><a href="fe72a08e63
"><code>fe72a08</code></a> Merge pull request <a href="https://redirect.github.com/rust-lang/hashbrown/issues/639">#639</a> from gaujay/unbloat-get_inner-perf</li> <li><a href="71f8f37413
"><code>71f8f37</code></a> Merge pull request <a href="https://redirect.github.com/rust-lang/hashbrown/issues/637">#637</a> from gaujay/add-benchmarks</li> <li><a href="f1c039c1f6
"><code>f1c039c</code></a> Un-bloat get_inner functions to restore lookup performance</li> <li>Additional commits viewable in <a href="https://github.com/rust-lang/hashbrown/compare/v0.15.5...v0.16.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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
parent
e799b732b6
commit
a2b2f98868
4
Cargo.lock
generated
4
Cargo.lock
generated
@ -2526,7 +2526,7 @@ dependencies = [
|
||||
"bitflags 2.9.4",
|
||||
"compact_str",
|
||||
"document-features",
|
||||
"hashbrown 0.15.5",
|
||||
"hashbrown 0.16.0",
|
||||
"indoc",
|
||||
"itertools 0.14.0",
|
||||
"kasuari",
|
||||
@ -2604,7 +2604,7 @@ dependencies = [
|
||||
"color-eyre",
|
||||
"crossterm 0.29.0",
|
||||
"document-features",
|
||||
"hashbrown 0.15.5",
|
||||
"hashbrown 0.16.0",
|
||||
"indoc",
|
||||
"instability",
|
||||
"itertools 0.14.0",
|
||||
|
@ -38,7 +38,7 @@ crossterm = "0.29"
|
||||
document-features = "0.2"
|
||||
fakeit = "1"
|
||||
futures = "0.3"
|
||||
hashbrown = "0.15"
|
||||
hashbrown = "0.16"
|
||||
indoc = "2"
|
||||
instability = "0.3"
|
||||
itertools = { version = "0.14", default-features = false, features = ["use_alloc"] }
|
||||
|
Loading…
x
Reference in New Issue
Block a user