mirror of
https://github.com/servo/servo.git
synced 2025-08-30 01:28:21 +01:00
build(deps): bump indexmap from 2.10.0 to 2.11.0 (#38934)
Bumps [indexmap](https://github.com/indexmap-rs/indexmap) from 2.10.0 to 2.11.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/indexmap-rs/indexmap/blob/main/RELEASES.md">indexmap's changelog</a>.</em></p> <blockquote> <h2>2.11.0 (2025-08-22)</h2> <ul> <li>Added <code>insert_sorted_by</code> and <code>insert_sorted_by_key</code> methods to <code>IndexMap</code>, <code>IndexSet</code>, and <code>VacantEntry</code>, like customizable versions of <code>insert_sorted</code>.</li> <li>Added <code>is_sorted</code>, <code>is_sorted_by</code>, and <code>is_sorted_by_key</code> methods to <code>IndexMap</code> and <code>IndexSet</code>, as well as their <code>Slice</code> counterparts.</li> <li>Added <code>sort_by_key</code> and <code>sort_unstable_by_key</code> methods to <code>IndexMap</code> and <code>IndexSet</code>, as well as parallel counterparts.</li> <li>Added <code>replace_index</code> methods to <code>IndexMap</code>, <code>IndexSet</code>, and <code>VacantEntry</code> to replace the key (or set value) at a given index.</li> <li>Added optional <code>sval</code> serialization support.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="91d53adb32
"><code>91d53ad</code></a> Merge pull request <a href="https://redirect.github.com/indexmap-rs/indexmap/issues/409">#409</a> from cuviper/release-2.11.0</li> <li><a href="cf566a7060
"><code>cf566a7</code></a> Release 2.11.0</li> <li><a href="2e173dcf75
"><code>2e173dc</code></a> Merge pull request <a href="https://redirect.github.com/indexmap-rs/indexmap/issues/408">#408</a> from cuviper/is_sorted</li> <li><a href="e4bb7d03b9
"><code>e4bb7d0</code></a> Add <code>is_sorted</code>{,<code>_by</code>,<code>_by_key</code>}</li> <li><a href="0f40489b1a
"><code>0f40489</code></a> Merge pull request <a href="https://redirect.github.com/indexmap-rs/indexmap/issues/407">#407</a> from cuviper/sort_by_key</li> <li><a href="ab9e461b89
"><code>ab9e461</code></a> Add <code>sort_by_key</code> and <code>sort_unstable_by_key</code></li> <li><a href="a468ca41bb
"><code>a468ca4</code></a> Normalize to ASCII apostrophes</li> <li><a href="7939ae9c21
"><code>7939ae9</code></a> Merge pull request <a href="https://redirect.github.com/indexmap-rs/indexmap/issues/406">#406</a> from cuviper/more-insert_sorted_by</li> <li><a href="354345b5a2
"><code>354345b</code></a> Take <em>two</em> entries in <code>insert_sorted_by</code></li> <li><a href="314ec7dbda
"><code>314ec7d</code></a> Add quick checks for <code>insert_sorted_by</code></li> <li>Additional commits viewable in <a href="https://github.com/indexmap-rs/indexmap/compare/2.10.0...2.11.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
442eec2d5f
commit
15beea5911
2 changed files with 3 additions and 3 deletions
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -4453,9 +4453,9 @@ checksum = "76a49eaebc8750bcba241df1e1e47ebb51b81eb35c65e8f11ffa0aebac353f7f"
|
|||
|
||||
[[package]]
|
||||
name = "indexmap"
|
||||
version = "2.10.0"
|
||||
version = "2.11.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661"
|
||||
checksum = "f2481980430f9f78649238835720ddccc57e52df14ffce1c6f37391d61b563e9"
|
||||
dependencies = [
|
||||
"equivalent",
|
||||
"hashbrown",
|
||||
|
|
|
@ -87,7 +87,7 @@ icu_locid = "1.5.0"
|
|||
icu_segmenter = "1.5.0"
|
||||
image = "0.24"
|
||||
imsz = "0.2"
|
||||
indexmap = { version = "2.10.0", features = ["std"] }
|
||||
indexmap = { version = "2.11.0", features = ["std"] }
|
||||
ipc-channel = "0.20"
|
||||
itertools = "0.14"
|
||||
js = { package = "mozjs", git = "https://github.com/servo/mozjs" }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue