mirror of
https://github.com/nushell/nushell.git
synced 2025-04-27 06:38:21 +02:00
build(deps): bump indexmap from 2.8.0 to 2.9.0 (#15531)
Bumps [indexmap](https://github.com/indexmap-rs/indexmap) from 2.8.0 to 2.9.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.9.0 (2025-04-04)</h2> <ul> <li>Added a <code>get_disjoint_mut</code> method to <code>IndexMap</code>, matching Rust 1.86's <code>HashMap</code> method.</li> <li>Added a <code>get_disjoint_indices_mut</code> method to <code>IndexMap</code> and <code>map::Slice</code>, matching Rust 1.86's <code>get_disjoint_mut</code> method on slices.</li> <li>Deprecated the <code>borsh</code> feature in favor of their own <code>indexmap</code> feature, solving a cyclic dependency that occured via <code>borsh-derive</code>.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="1818d4140d
"><code>1818d41</code></a> Merge pull request <a href="https://redirect.github.com/indexmap-rs/indexmap/issues/387">#387</a> from cuviper/release-2.9.0</li> <li><a href="9f4998341b
"><code>9f49983</code></a> Release 2.9.0</li> <li><a href="582a90fda3
"><code>582a90f</code></a> Merge pull request <a href="https://redirect.github.com/indexmap-rs/indexmap/issues/386">#386</a> from cuviper/de-borsh</li> <li><a href="90117397b6
"><code>9011739</code></a> Deprecate the "borsh" feature</li> <li><a href="0a836e8648
"><code>0a836e8</code></a> Merge pull request <a href="https://redirect.github.com/indexmap-rs/indexmap/issues/238">#238</a> from NiklasJonsson/get_many_mut</li> <li><a href="434d7ac6d1
"><code>434d7ac</code></a> Avoid let-else for MSRV's sake</li> <li><a href="5be552d557
"><code>5be552d</code></a> Implement additional suggestions from review</li> <li><a href="4e1d8cef47
"><code>4e1d8ce</code></a> Address review feedback</li> <li><a href="5aec9ec674
"><code>5aec9ec</code></a> Implement get_disjoint_mut for arrays of keys</li> <li><a href="d10de30e74
"><code>d10de30</code></a> Merge pull request <a href="https://redirect.github.com/indexmap-rs/indexmap/issues/385">#385</a> from iajoiner/docs/macros</li> <li>Additional commits viewable in <a href="https://github.com/indexmap-rs/indexmap/compare/2.8.0...2.9.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
26699d96eb
commit
c0b944edb6
4
Cargo.lock
generated
4
Cargo.lock
generated
@ -2696,9 +2696,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "indexmap"
|
name = "indexmap"
|
||||||
version = "2.8.0"
|
version = "2.9.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "3954d50fe15b02142bf25d3b8bdadb634ec3948f103d04ffe3031bc8fe9d7058"
|
checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"equivalent",
|
"equivalent",
|
||||||
"hashbrown 0.15.2",
|
"hashbrown 0.15.2",
|
||||||
|
@ -92,7 +92,7 @@ filesize = "0.2"
|
|||||||
filetime = "0.2"
|
filetime = "0.2"
|
||||||
heck = "0.5.0"
|
heck = "0.5.0"
|
||||||
human-date-parser = "0.3.0"
|
human-date-parser = "0.3.0"
|
||||||
indexmap = "2.8"
|
indexmap = "2.9"
|
||||||
indicatif = "0.17"
|
indicatif = "0.17"
|
||||||
interprocess = "2.2.0"
|
interprocess = "2.2.0"
|
||||||
is_executable = "1.0"
|
is_executable = "1.0"
|
||||||
|
@ -26,7 +26,7 @@ nu-utils = { path = "../nu-utils", version = "0.103.1" }
|
|||||||
chrono = { workspace = true, features = ["std", "unstable-locales"], default-features = false }
|
chrono = { workspace = true, features = ["std", "unstable-locales"], default-features = false }
|
||||||
chrono-tz = "0.10"
|
chrono-tz = "0.10"
|
||||||
fancy-regex = { workspace = true }
|
fancy-regex = { workspace = true }
|
||||||
indexmap = { version = "2.8" }
|
indexmap = { version = "2.9" }
|
||||||
num = {version = "0.4"}
|
num = {version = "0.4"}
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
sqlparser = { version = "0.53"}
|
sqlparser = { version = "0.53"}
|
||||||
|
Loading…
Reference in New Issue
Block a user