chore(deps): Update compatible (#1104)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [anyhow](https://redirect.github.com/dtolnay/anyhow) | dependencies |
patch | `1.0.86` -> `1.0.89` |
| [clap](https://redirect.github.com/clap-rs/clap) | dependencies |
patch | `4.5.13` -> `4.5.18` |
|
[clap-verbosity-flag](https://redirect.github.com/clap-rs/clap-verbosity-flag)
| dependencies | patch | `2.2.1` -> `2.2.2` |
| [edit-distance](https://redirect.github.com/febeling/edit-distance) |
dev-dependencies | patch | `2.1.2` -> `2.1.3` |
|
[globset](https://redirect.github.com/BurntSushi/ripgrep/tree/master/crates/globset)
([source](https://redirect.github.com/BurntSushi/ripgrep/tree/HEAD/crates/globset))
| dependencies | patch | `0.4.14` -> `0.4.15` |
|
[ignore](https://redirect.github.com/BurntSushi/ripgrep/tree/master/crates/ignore)
([source](https://redirect.github.com/BurntSushi/ripgrep/tree/HEAD/crates/ignore))
| dependencies | patch | `0.4.22` -> `0.4.23` |
| [indexmap](https://redirect.github.com/indexmap-rs/indexmap) |
dev-dependencies | minor | `2.3.0` -> `2.5.0` |
| [once_cell](https://redirect.github.com/matklad/once_cell) |
dependencies | minor | `1.19.0` -> `1.20.1` |
| [regex](https://redirect.github.com/rust-lang/regex) | dependencies |
minor | `1.10.5` -> `1.11.0` |
| [regex](https://redirect.github.com/rust-lang/regex) |
dev-dependencies | minor | `1.10.5` -> `1.11.0` |
| [serde](https://serde.rs)
([source](https://redirect.github.com/serde-rs/serde)) | dependencies |
patch | `1.0.204` -> `1.0.210` |
| [serde_json](https://redirect.github.com/serde-rs/json) | dependencies
| patch | `1.0.121` -> `1.0.128` |
| [simdutf8](https://redirect.github.com/rusticstuff/simdutf8) |
dependencies | patch | `0.1.4` -> `0.1.5` |
| [thiserror](https://redirect.github.com/dtolnay/thiserror) |
dependencies | patch | `1.0.63` -> `1.0.64` |
| [trycmd](https://redirect.github.com/assert-rs/trycmd)
([source](https://redirect.github.com/assert-rs/snapbox)) |
dev-dependencies | patch | `0.15.6` -> `0.15.7` |
|
[unicode-segmentation](https://redirect.github.com/unicode-rs/unicode-segmentation)
| dependencies | minor | `1.11.0` -> `1.12.0` |
| [unicode-xid](https://redirect.github.com/unicode-rs/unicode-xid) |
dependencies | patch | `0.2.4` -> `0.2.6` |
| [winnow](https://redirect.github.com/winnow-rs/winnow) | dependencies
| patch | `0.6.18` -> `0.6.20` |

---

### Release Notes

<details>
<summary>dtolnay/anyhow (anyhow)</summary>

###
[`v1.0.89`](https://redirect.github.com/dtolnay/anyhow/releases/tag/1.0.89)

[Compare
Source](https://redirect.github.com/dtolnay/anyhow/compare/1.0.88...1.0.89)

- Make anyhow::Error's `UnwindSafe` and `RefUnwindSafe` impl
consistently available between versions of Rust newer and older than
1.72
([#&#8203;386](https://redirect.github.com/dtolnay/anyhow/issues/386))

###
[`v1.0.88`](https://redirect.github.com/dtolnay/anyhow/releases/tag/1.0.88)

[Compare
Source](https://redirect.github.com/dtolnay/anyhow/compare/1.0.87...1.0.88)

-   Documentation improvements

###
[`v1.0.87`](https://redirect.github.com/dtolnay/anyhow/releases/tag/1.0.87)

[Compare
Source](https://redirect.github.com/dtolnay/anyhow/compare/1.0.86...1.0.87)

- Support more APIs, including `Error::new` and `Error::chain`, in
no-std mode on Rust 1.81+
([#&#8203;383](https://redirect.github.com/dtolnay/anyhow/issues/383))

</details>

<details>
<summary>clap-rs/clap (clap)</summary>

###
[`v4.5.18`](https://redirect.github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4518---2024-09-20)

[Compare
Source](https://redirect.github.com/clap-rs/clap/compare/v4.5.17...v4.5.18)

##### Features

- *(builder)* Expose `Arg::get_display_order` and
`Command::get_display_order`

###
[`v4.5.17`](https://redirect.github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4517---2024-09-04)

[Compare
Source](https://redirect.github.com/clap-rs/clap/compare/v4.5.16...v4.5.17)

##### Fixes

-   *(help)* Style required argument groups
-   *(derive)* Improve error messages when unsupported fields are used

###
[`v4.5.16`](https://redirect.github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4516---2024-08-15)

[Compare
Source](https://redirect.github.com/clap-rs/clap/compare/v4.5.15...v4.5.16)

##### Fixes

-   *(derive)* Improve error messages when `derive` feature is missing

###
[`v4.5.15`](https://redirect.github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4515---2024-08-10)

[Compare
Source](https://redirect.github.com/clap-rs/clap/compare/v4.5.14...v4.5.15)

##### Compatiblity

-   *(unstable-ext)* `Arg::remove` changed return types

##### Fixes

-   *(unstable-ext)* Make `Arg::remove` return the removed item

###
[`v4.5.14`](https://redirect.github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4514---2024-08-08)

[Compare
Source](https://redirect.github.com/clap-rs/clap/compare/v4.5.13...v4.5.14)

##### Features

- *(unstable-ext)* Added `Arg::add` for attaching arbitrary state, like
completion hints, to `Arg` without `Arg` knowing about it

</details>

<details>
<summary>clap-rs/clap-verbosity-flag (clap-verbosity-flag)</summary>

###
[`v2.2.2`](https://redirect.github.com/clap-rs/clap-verbosity-flag/blob/HEAD/CHANGELOG.md#222---2024-09-26)

[Compare
Source](https://redirect.github.com/clap-rs/clap-verbosity-flag/compare/v2.2.1...v2.2.2)

##### Fixes

-   Resolve overflow issues

</details>

<details>
<summary>febeling/edit-distance (edit-distance)</summary>

###
[`v2.1.3`](https://redirect.github.com/febeling/edit-distance/compare/2.1.2...2.1.3)

[Compare
Source](https://redirect.github.com/febeling/edit-distance/compare/2.1.2...2.1.3)

</details>

<details>
<summary>indexmap-rs/indexmap (indexmap)</summary>

###
[`v2.5.0`](https://redirect.github.com/indexmap-rs/indexmap/blob/HEAD/RELEASES.md#250)

[Compare
Source](https://redirect.github.com/indexmap-rs/indexmap/compare/2.4.0...2.5.0)

-   Added an `insert_before` method to `IndexMap` and `IndexSet`, as an
alternative to `shift_insert` with different behavior on existing
entries.
-   Added `first_entry` and `last_entry` methods to `IndexMap`.
- Added `From` implementations between `IndexedEntry` and
`OccupiedEntry`.

###
[`v2.4.0`](https://redirect.github.com/indexmap-rs/indexmap/blob/HEAD/RELEASES.md#240)

[Compare
Source](https://redirect.github.com/indexmap-rs/indexmap/compare/2.3.0...2.4.0)

- Added methods `IndexMap::append` and `IndexSet::append`, moving all
items from
one map or set into another, and leaving the original capacity for
reuse.

</details>

<details>
<summary>matklad/once_cell (once_cell)</summary>

###
[`v1.20.1`](https://redirect.github.com/matklad/once_cell/blob/HEAD/CHANGELOG.md#1201)

[Compare
Source](https://redirect.github.com/matklad/once_cell/compare/v1.20.0...v1.20.1)

- Allow using `race` module using just `portable_atomic`, without
`critical_section` and provide
    better error messages on targets without atomic CAS instruction,
[#&#8203;265](https://redirect.github.com/matklad/once_cell/pull/265).

###
[`v1.20.0`](https://redirect.github.com/matklad/once_cell/compare/v1.19.0...v1.20.0)

[Compare
Source](https://redirect.github.com/matklad/once_cell/compare/v1.19.0...v1.20.0)

</details>

<details>
<summary>rust-lang/regex (regex)</summary>

###
[`v1.11.0`](https://redirect.github.com/rust-lang/regex/blob/HEAD/CHANGELOG.md#1110-2024-09-29)

[Compare
Source](https://redirect.github.com/rust-lang/regex/compare/1.10.6...1.11.0)

\===================
This is a new minor release of `regex` that brings in an update to the
Unicode Character Database. Specifically, this updates the Unicode data
used by `regex` internally to the version 16 release.

New features:

- [FEATURE
#&#8203;1228](https://redirect.github.com/rust-lang/regex/pull/1228):
    Add new `regex::SetMatches::matched_all` method.
- [FEATURE
#&#8203;1229](https://redirect.github.com/rust-lang/regex/pull/1229):
    Update to Unicode Character Database (UCD) version 16.

###
[`v1.10.6`](https://redirect.github.com/rust-lang/regex/blob/HEAD/CHANGELOG.md#1106-2024-08-02)

[Compare
Source](https://redirect.github.com/rust-lang/regex/compare/1.10.5...1.10.6)

\===================
This is a new patch release with a fix for the `unstable` crate feature
that
enables `std::str::Pattern` trait integration.

Bug fixes:

- [BUG
#&#8203;1219](https://redirect.github.com/rust-lang/regex/pull/1219):
Fix the `Pattern` trait implementation as a result of nightly API
breakage.

</details>

<details>
<summary>serde-rs/serde (serde)</summary>

###
[`v1.0.210`](https://redirect.github.com/serde-rs/serde/releases/tag/v1.0.210)

[Compare
Source](https://redirect.github.com/serde-rs/serde/compare/v1.0.209...v1.0.210)

- Support serializing and deserializing `IpAddr` and `SocketAddr` in
no-std mode on Rust 1.77+
([#&#8203;2816](https://redirect.github.com/serde-rs/serde/issues/2816),
thanks [@&#8203;MathiasKoch](https://redirect.github.com/MathiasKoch))
- Make `serde::ser::StdError` and `serde:🇩🇪:StdError` equivalent to
`core::error::Error` on Rust 1.81+
([#&#8203;2818](https://redirect.github.com/serde-rs/serde/issues/2818))

###
[`v1.0.209`](https://redirect.github.com/serde-rs/serde/releases/tag/v1.0.209)

[Compare
Source](https://redirect.github.com/serde-rs/serde/compare/v1.0.208...v1.0.209)

- Fix deserialization of empty structs and empty tuples inside of
untagged enums
([#&#8203;2805](https://redirect.github.com/serde-rs/serde/issues/2805),
thanks [@&#8203;Mingun](https://redirect.github.com/Mingun))

###
[`v1.0.208`](https://redirect.github.com/serde-rs/serde/releases/tag/v1.0.208)

[Compare
Source](https://redirect.github.com/serde-rs/serde/compare/v1.0.207...v1.0.208)

- Support serializing and deserializing unit structs in a `flatten`
field
([#&#8203;2802](https://redirect.github.com/serde-rs/serde/issues/2802),
thanks [@&#8203;jonhoo](https://redirect.github.com/jonhoo))

###
[`v1.0.207`](https://redirect.github.com/serde-rs/serde/releases/tag/v1.0.207)

[Compare
Source](https://redirect.github.com/serde-rs/serde/compare/v1.0.206...v1.0.207)

- Improve interactions between `flatten` attribute and
`skip_serializing`/`skip_deserializing`
([#&#8203;2795](https://redirect.github.com/serde-rs/serde/issues/2795),
thanks [@&#8203;Mingun](https://redirect.github.com/Mingun))

###
[`v1.0.206`](https://redirect.github.com/serde-rs/serde/releases/tag/v1.0.206)

[Compare
Source](https://redirect.github.com/serde-rs/serde/compare/v1.0.205...v1.0.206)

- Improve support for `flatten` attribute inside of enums
([#&#8203;2567](https://redirect.github.com/serde-rs/serde/issues/2567),
thanks [@&#8203;Mingun](https://redirect.github.com/Mingun))

###
[`v1.0.205`](https://redirect.github.com/serde-rs/serde/releases/tag/v1.0.205)

[Compare
Source](https://redirect.github.com/serde-rs/serde/compare/v1.0.204...v1.0.205)

- Use serialize_entry instead of serialize_key + serialize_value when
serialize flattened newtype enum variants
([#&#8203;2785](https://redirect.github.com/serde-rs/serde/issues/2785),
thanks [@&#8203;Mingun](https://redirect.github.com/Mingun))
- Avoid triggering a collection_is_never_read lint in the
deserialization of enums containing flattened fields
([#&#8203;2791](https://redirect.github.com/serde-rs/serde/issues/2791))

</details>

<details>
<summary>serde-rs/json (serde_json)</summary>

###
[`v1.0.128`](https://redirect.github.com/serde-rs/json/releases/tag/1.0.128)

[Compare
Source](https://redirect.github.com/serde-rs/json/compare/1.0.127...1.0.128)

- Support serializing maps containing 128-bit integer keys to
serde_json::Value
([#&#8203;1188](https://redirect.github.com/serde-rs/json/issues/1188),
thanks [@&#8203;Mrreadiness](https://redirect.github.com/Mrreadiness))

###
[`v1.0.127`](https://redirect.github.com/serde-rs/json/releases/tag/1.0.127)

[Compare
Source](https://redirect.github.com/serde-rs/json/compare/1.0.126...1.0.127)

- Add more removal methods to OccupiedEntry
([#&#8203;1179](https://redirect.github.com/serde-rs/json/issues/1179),
thanks [@&#8203;GREsau](https://redirect.github.com/GREsau))

###
[`v1.0.126`](https://redirect.github.com/serde-rs/json/releases/tag/1.0.126)

[Compare
Source](https://redirect.github.com/serde-rs/json/compare/1.0.125...1.0.126)

- Improve string parsing on targets that use 32-bit pointers but also
have fast 64-bit integer arithmetic, such as
aarch64-unknown-linux-gnu_ilp32 and x86\_64-unknown-linux-gnux32
([#&#8203;1182](https://redirect.github.com/serde-rs/json/issues/1182),
thanks [@&#8203;CryZe](https://redirect.github.com/CryZe))

###
[`v1.0.125`](https://redirect.github.com/serde-rs/json/releases/tag/1.0.125)

[Compare
Source](https://redirect.github.com/serde-rs/json/compare/v1.0.124...1.0.125)

- Speed up \uXXXX parsing and improve handling of unpaired surrogates
when deserializing to bytes
([#&#8203;1172](https://redirect.github.com/serde-rs/json/issues/1172),
[#&#8203;1175](https://redirect.github.com/serde-rs/json/issues/1175),
thanks
[@&#8203;purplesyringa](https://redirect.github.com/purplesyringa))

###
[`v1.0.124`](https://redirect.github.com/serde-rs/json/releases/tag/v1.0.124)

[Compare
Source](https://redirect.github.com/serde-rs/json/compare/v1.0.123...v1.0.124)

- Fix a bug in processing string escapes in big-endian architectures
([#&#8203;1173](https://redirect.github.com/serde-rs/json/issues/1173),
thanks
[@&#8203;purplesyringa](https://redirect.github.com/purplesyringa))

###
[`v1.0.123`](https://redirect.github.com/serde-rs/json/releases/tag/v1.0.123)

[Compare
Source](https://redirect.github.com/serde-rs/json/compare/v1.0.122...v1.0.123)

- Optimize string parsing by applying SIMD-within-a-register: 30.3%
improvement on
[twitter.json](https://redirect.github.com/miloyip/nativejson-benchmark/blob/v1.0.0/data/twitter.json)
from 613 MB/s to 799 MB/s
([#&#8203;1161](https://redirect.github.com/serde-rs/json/issues/1161),
thanks
[@&#8203;purplesyringa](https://redirect.github.com/purplesyringa))

###
[`v1.0.122`](https://redirect.github.com/serde-rs/json/releases/tag/v1.0.122)

[Compare
Source](https://redirect.github.com/serde-rs/json/compare/v1.0.121...v1.0.122)

- Support using `json!` in no-std crates
([#&#8203;1166](https://redirect.github.com/serde-rs/json/issues/1166))

</details>

<details>
<summary>rusticstuff/simdutf8 (simdutf8)</summary>

###
[`v0.1.5`](https://redirect.github.com/rusticstuff/simdutf8/blob/HEAD/CHANGELOG.md#015---2024-09-22)

[Compare
Source](https://redirect.github.com/rusticstuff/simdutf8/compare/v0.1.4...v0.1.5)

##### Bug fixes

- Fix Undefined Behavior in WebAssembly SIMD128
([#&#8203;86](https://redirect.github.com/rusticstuff/simdutf8/issues/86))
(thanks [@&#8203;CryZe](https://redirect.github.com/CryZe))
- Documentation and clippy fixes (thanks
[@&#8203;rtfeldman](https://redirect.github.com/rtfeldman),
[@&#8203;jqnatividad](https://redirect.github.com/jqnatividad),
[@&#8203;rhysd](https://redirect.github.com/rhysd))

##### Performance

- WASM: Don't use u8x16\_bitmask for ASCII Check
([#&#8203;79](https://redirect.github.com/rusticstuff/simdutf8/issues/79))
(thanks [@&#8203;CryZe](https://redirect.github.com/CryZe))

</details>

<details>
<summary>dtolnay/thiserror (thiserror)</summary>

###
[`v1.0.64`](https://redirect.github.com/dtolnay/thiserror/releases/tag/1.0.64)

[Compare
Source](https://redirect.github.com/dtolnay/thiserror/compare/1.0.63...1.0.64)

- Exclude derived impls from coverage instrumentation
([#&#8203;322](https://redirect.github.com/dtolnay/thiserror/issues/322),
thanks [@&#8203;oxalica](https://redirect.github.com/oxalica))

</details>

<details>
<summary>assert-rs/snapbox (trycmd)</summary>

###
[`v0.15.7`](https://redirect.github.com/assert-rs/snapbox/compare/trycmd-v0.15.6...trycmd-v0.15.7)

[Compare
Source](https://redirect.github.com/assert-rs/snapbox/compare/trycmd-v0.15.6...trycmd-v0.15.7)

</details>

<details>
<summary>unicode-rs/unicode-segmentation
(unicode-segmentation)</summary>

###
[`v1.12.0`](https://redirect.github.com/unicode-rs/unicode-segmentation/compare/v1.11.0...v1.12.0)

[Compare
Source](https://redirect.github.com/unicode-rs/unicode-segmentation/compare/v1.11.0...v1.12.0)

</details>

<details>
<summary>unicode-rs/unicode-xid (unicode-xid)</summary>

###
[`v0.2.6`](https://redirect.github.com/unicode-rs/unicode-xid/blob/HEAD/CHANGELOG.md#026)

[Compare
Source](https://redirect.github.com/unicode-rs/unicode-xid/compare/v0.2.5...v0.2.6)

-   Update to Unicode 16.0.0.

###
[`v0.2.5`](https://redirect.github.com/unicode-rs/unicode-xid/blob/HEAD/CHANGELOG.md#025)

[Compare
Source](https://redirect.github.com/unicode-rs/unicode-xid/compare/v0.2.4...v0.2.5)

-   Update to Unicode 15.1.0.

</details>

<details>
<summary>winnow-rs/winnow (winnow)</summary>

###
[`v0.6.20`](https://redirect.github.com/winnow-rs/winnow/blob/HEAD/CHANGELOG.md#0620---2024-09-25)

[Compare
Source](https://redirect.github.com/winnow-rs/winnow/compare/v0.6.19...v0.6.20)

##### Internal

-   Dependency update

###
[`v0.6.19`](https://redirect.github.com/winnow-rs/winnow/blob/HEAD/CHANGELOG.md#0619---2024-09-24)

[Compare
Source](https://redirect.github.com/winnow-rs/winnow/compare/v0.6.18...v0.6.19)

##### Features

- Add `Located::reset_to_start` for parsing encoded graphs with
start-relative pointers

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 5am on the first day of the
month" (UTC), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config
help](https://redirect.github.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/crate-ci/typos).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC45Ny4wIiwidXBkYXRlZEluVmVyIjoiMzguOTcuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6W119-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This commit is contained in:
renovate[bot] 2024-10-01 00:47:45 +00:00 committed by GitHub
parent 977faa8c94
commit 2dc6cb8511
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

102
Cargo.lock generated
View file

@ -90,9 +90,9 @@ dependencies = [
[[package]]
name = "anyhow"
version = "1.0.86"
version = "1.0.89"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da"
checksum = "86fdf8605db99b54d3cd748a44c6d04df638eb5dafb219b135d0149bd0db01f6"
[[package]]
name = "assert_fs"
@ -181,9 +181,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "clap"
version = "4.5.13"
version = "4.5.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fbb260a053428790f3de475e304ff84cdbc4face759ea7a3e64c1edd938a7fc"
checksum = "b0956a43b323ac1afaffc053ed5c4b7c1f1800bacd1683c353aabbb752515dd3"
dependencies = [
"clap_builder",
"clap_derive",
@ -191,9 +191,9 @@ dependencies = [
[[package]]
name = "clap-verbosity-flag"
version = "2.2.1"
version = "2.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "63d19864d6b68464c59f7162c9914a0b569ddc2926b4a2d71afe62a9738eff53"
checksum = "e099138e1807662ff75e2cebe4ae2287add879245574489f9b1588eb5e5564ed"
dependencies = [
"clap",
"log",
@ -201,9 +201,9 @@ dependencies = [
[[package]]
name = "clap_builder"
version = "4.5.13"
version = "4.5.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "64b17d7ea74e9f833c7dbf2cbe4fb12ff26783eda4782a8975b72f895c9b4d99"
checksum = "4d72166dd41634086d5803a47eb71ae740e61d84709c36f3c34110173db3961b"
dependencies = [
"anstream",
"anstyle",
@ -214,9 +214,9 @@ dependencies = [
[[package]]
name = "clap_derive"
version = "4.5.13"
version = "4.5.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "501d359d5f3dcaf6ecdeee48833ae73ec6e42723a1e52419c79abf9507eec0a0"
checksum = "4ac6a0c7b1a9e9a5186361f67dfa1b88213572f427fb9ab038efb2bd8c582dab"
dependencies = [
"heck",
"proc-macro2",
@ -467,9 +467,9 @@ checksum = "56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b"
[[package]]
name = "edit-distance"
version = "2.1.2"
version = "2.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "853fc7035888bd1c9320f3a05bfe7f344f49b8766a4bb4209b1ac5f0503d9577"
checksum = "e3f497e87b038c09a155dfd169faa5ec940d0644635555ef6bd464ac20e97397"
[[package]]
name = "either"
@ -592,9 +592,9 @@ checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
[[package]]
name = "globset"
version = "0.4.14"
version = "0.4.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57da3b9b5b85bd66f31093f8c408b90a74431672542466497dcbdfdc02034be1"
checksum = "15f1ce686646e7f1e19bf7d5533fe443a45dbfb990e00629110797578b42fb19"
dependencies = [
"aho-corasick",
"bstr",
@ -666,9 +666,9 @@ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
[[package]]
name = "ignore"
version = "0.4.22"
version = "0.4.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b46810df39e66e925525d6e38ce1e7f6e1d208f72dc39757880fcb66e2c58af1"
checksum = "6d89fd380afde86567dfba715db065673989d6253f42b88179abd3eae47bda4b"
dependencies = [
"crossbeam-deque",
"globset",
@ -682,9 +682,9 @@ dependencies = [
[[package]]
name = "indexmap"
version = "2.3.0"
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "de3fc2e30ba82dd1b3911c8de1ffc143c74a914a14e99514d7637e3099df5ea0"
checksum = "68b900aa2f7301e21c36462b170ee99994de34dff39a4a6a528e80e7376d07e5"
dependencies = [
"equivalent",
"hashbrown",
@ -807,9 +807,12 @@ dependencies = [
[[package]]
name = "once_cell"
version = "1.19.0"
version = "1.20.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
checksum = "82881c4be219ab5faaf2ad5e5e5ecdff8c66bd7402ca3160975c93b24961afd1"
dependencies = [
"portable-atomic",
]
[[package]]
name = "os_info"
@ -886,6 +889,12 @@ dependencies = [
"unicase",
]
[[package]]
name = "portable-atomic"
version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cc9c68a3f6da06753e9335d63e27f6b9754dd1920d941135b7ea8224f141adb2"
[[package]]
name = "predicates"
version = "3.0.4"
@ -984,9 +993,9 @@ dependencies = [
[[package]]
name = "regex"
version = "1.10.5"
version = "1.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b91213439dad192326a0d7c6ee3955910425f441d7038e0d6933b0aec5c4517f"
checksum = "38200e5ee88914975b69f657f0801b6f6dccafd44fd9326302a4aaeecfacb1d8"
dependencies = [
"aho-corasick",
"memchr",
@ -996,9 +1005,9 @@ dependencies = [
[[package]]
name = "regex-automata"
version = "0.4.5"
version = "0.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5bb987efffd3c6d0d8f5f89510bb458559eab11e4f869acb20bf845e016259cd"
checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3"
dependencies = [
"aho-corasick",
"memchr",
@ -1013,9 +1022,9 @@ checksum = "30b661b2f27137bdbc16f00eda72866a92bb28af1753ffbd56744fb6e2e9cd8e"
[[package]]
name = "regex-syntax"
version = "0.8.2"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
[[package]]
name = "rustc-demangle"
@ -1059,18 +1068,18 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
[[package]]
name = "serde"
version = "1.0.204"
version = "1.0.210"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc76f558e0cbb2a839d37354c575f1dc3fdc6546b5be373ba43d95f231bf7c12"
checksum = "c8e3592472072e6e22e0a54d5904d9febf8508f65fb8552499a1abc7d1078c3a"
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
version = "1.0.204"
version = "1.0.210"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e0cd7e117be63d3c3678776753929474f3b04a43a080c744d6b0ae2a8c28e222"
checksum = "243902eda00fad750862fc144cea25caca5e20d615af0a81bee94ca738f1df1f"
dependencies = [
"proc-macro2",
"quote",
@ -1079,9 +1088,9 @@ dependencies = [
[[package]]
name = "serde_json"
version = "1.0.121"
version = "1.0.128"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ab380d7d9f22ef3f21ad3e6c1ebe8e4fc7a2000ccba2e4d71fc96f15b2cb609"
checksum = "6ff5456707a1de34e7e37f2a6fd3d3f808c318259cbd01ab6377795054b483d8"
dependencies = [
"itoa",
"memchr",
@ -1116,9 +1125,9 @@ checksum = "a7cee0529a6d40f580e7a5e6c495c8fbfe21b7b52795ed4bb5e62cdf92bc6380"
[[package]]
name = "simdutf8"
version = "0.1.4"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a"
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
[[package]]
name = "similar"
@ -1223,18 +1232,18 @@ checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76"
[[package]]
name = "thiserror"
version = "1.0.63"
version = "1.0.64"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724"
checksum = "d50af8abc119fb8bb6dbabcfa89656f46f84aa0ac7688088608076ad2b459a84"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
version = "1.0.63"
version = "1.0.64"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261"
checksum = "08904e7672f5eb876eaaf87e0ce17857500934f4981c4a0ab2b4aa98baac7fc3"
dependencies = [
"proc-macro2",
"quote",
@ -1287,10 +1296,11 @@ dependencies = [
[[package]]
name = "trycmd"
version = "0.15.6"
version = "0.15.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3e8673f1dc45acdff8e25a06cc62f8e529563e8acd84237ce83d5a28e2befa12"
checksum = "288c25d9be00f5ac52a3b3ff7720248c223096534ec34e870188f1bc93f2465c"
dependencies = [
"anstream",
"automod",
"glob",
"humantime",
@ -1459,9 +1469,9 @@ checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
[[package]]
name = "unicode-segmentation"
version = "1.11.0"
version = "1.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202"
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
[[package]]
name = "unicode-width"
@ -1471,9 +1481,9 @@ checksum = "0336d538f7abc86d282a4189614dfaa90810dfc2c6f6427eaf88e16311dd225d"
[[package]]
name = "unicode-xid"
version = "0.2.4"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c"
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
[[package]]
name = "utf8parse"
@ -1722,9 +1732,9 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
[[package]]
name = "winnow"
version = "0.6.18"
version = "0.6.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68a9bda4691f099d435ad181000724da8e5899daa10713c2d432552b9ccd3a6f"
checksum = "36c1fec1a2bb5866f07c25f68c26e565c4c200aebb96d7e55710c19d3e8ac49b"
dependencies = [
"memchr",
]