Skip to content

Commit 98d1b3e

Browse files
chore(deps): Update compatible (#142)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [anstream](https://redirect.github.com/rust-cli/anstyle) | dependencies | patch | `0.6.19` -> `0.6.21` | | [anstyle](https://redirect.github.com/rust-cli/anstyle) | dependencies | patch | `1.0.11` -> `1.0.13` | | [bstr](https://redirect.github.com/BurntSushi/bstr) | dependencies | patch | `1.12.0` -> `1.12.1` | | [clap](https://redirect.github.com/clap-rs/clap) | dependencies | patch | `4.5.40` -> `4.5.51` | | [clap-verbosity-flag](https://redirect.github.com/clap-rs/clap-verbosity-flag) | dependencies | patch | `3.0.3` -> `3.0.4` | | [human-panic](https://redirect.github.com/rust-cli/human-panic) | dependencies | patch | `2.0.2` -> `2.0.4` | | [log](https://redirect.github.com/rust-lang/log) | dependencies | patch | `0.4.27` -> `0.4.28` | | [serde](https://serde.rs) ([source](https://redirect.github.com/serde-rs/serde)) | dependencies | patch | `1.0.219` -> `1.0.228` | | [serde_json](https://redirect.github.com/serde-rs/json) | dependencies | patch | `1.0.140` -> `1.0.145` | --- ### Release Notes <details> <summary>rust-cli/anstyle (anstream)</summary> ### [`v0.6.21`](https://redirect.github.com/rust-cli/anstyle/compare/anstream-v0.6.20...anstream-v0.6.21) [Compare Source](https://redirect.github.com/rust-cli/anstyle/compare/anstream-v0.6.20...anstream-v0.6.21) ### [`v0.6.20`](https://redirect.github.com/rust-cli/anstyle/compare/anstream-v0.6.19...anstream-v0.6.20) [Compare Source](https://redirect.github.com/rust-cli/anstyle/compare/anstream-v0.6.19...anstream-v0.6.20) </details> <details> <summary>BurntSushi/bstr (bstr)</summary> ### [`v1.12.1`](https://redirect.github.com/BurntSushi/bstr/compare/1.12.0...1.12.1) [Compare Source](https://redirect.github.com/BurntSushi/bstr/compare/1.12.0...1.12.1) </details> <details> <summary>clap-rs/clap (clap)</summary> ### [`v4.5.51`](https://redirect.github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4551---2025-10-29) [Compare Source](https://redirect.github.com/clap-rs/clap/compare/v4.5.50...v4.5.51) ##### Fixes - *(help)* Correctly calculate padding for short flags that take a value - *(help)* Don't panic on short flags using `ArgAction::Count` ### [`v4.5.50`](https://redirect.github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4550---2025-10-20) [Compare Source](https://redirect.github.com/clap-rs/clap/compare/v4.5.49...v4.5.50) ##### Features - Accept `Cow` where `String` and `&str` are accepted ### [`v4.5.49`](https://redirect.github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4549---2025-10-13) [Compare Source](https://redirect.github.com/clap-rs/clap/compare/v4.5.48...v4.5.49) ##### Fixes - *(help)* Correctly wrap when ANSI escape codes are present ### [`v4.5.48`](https://redirect.github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4548---2025-09-19) [Compare Source](https://redirect.github.com/clap-rs/clap/compare/v4.5.47...v4.5.48) ##### Documentation - Add a new CLI Concepts document as another way of framing clap - Expand the `typed_derive` cookbook entry ### [`v4.5.47`](https://redirect.github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4547---2025-09-02) [Compare Source](https://redirect.github.com/clap-rs/clap/compare/v4.5.46...v4.5.47) ##### Features - Added `impl FromArgMatches for ()` - Added `impl Args for ()` - Added `impl Subcommand for ()` - Added `impl FromArgMatches for Infallible` - Added `impl Subcommand for Infallible` ##### Fixes - *(derive)* Update runtime error text to match `clap` ### [`v4.5.46`](https://redirect.github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4546---2025-08-26) [Compare Source](https://redirect.github.com/clap-rs/clap/compare/v4.5.45...v4.5.46) ##### Features - Expose `StyledStr::push_str` ### [`v4.5.45`](https://redirect.github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4545---2025-08-12) [Compare Source](https://redirect.github.com/clap-rs/clap/compare/v4.5.44...v4.5.45) ##### Fixes - *(unstable-v5)* `ValueEnum` variants now use the full doc comment, not summary, for `PossibleValue::help` ### [`v4.5.44`](https://redirect.github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4544---2025-08-11) [Compare Source](https://redirect.github.com/clap-rs/clap/compare/v4.5.43...v4.5.44) ##### Features - Add `Command::mut_subcommands` ### [`v4.5.43`](https://redirect.github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4543---2025-08-06) [Compare Source](https://redirect.github.com/clap-rs/clap/compare/v4.5.42...v4.5.43) ##### Fixes - *(help)* In long help, list Possible Values before defaults, rather than after, for a more consistent look ### [`v4.5.42`](https://redirect.github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4542---2025-07-30) [Compare Source](https://redirect.github.com/clap-rs/clap/compare/v4.5.41...v4.5.42) ##### Fixes - Include subcommand visible long aliases in `--help` ### [`v4.5.41`](https://redirect.github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4541---2025-07-09) [Compare Source](https://redirect.github.com/clap-rs/clap/compare/v4.5.40...v4.5.41) ##### Features - Add `Styles::context` and `Styles::context_value` to customize the styling of `[default: value]` like notes in the `--help` </details> <details> <summary>clap-rs/clap-verbosity-flag (clap-verbosity-flag)</summary> ### [`v3.0.4`](https://redirect.github.com/clap-rs/clap-verbosity-flag/blob/HEAD/CHANGELOG.md#304---2025-08-19) [Compare Source](https://redirect.github.com/clap-rs/clap-verbosity-flag/compare/v3.0.3...v3.0.4) ##### Features - Add `serde` feature for when mixing CLI and config - Add comparison operators to types - Add conversions between `Verbosity` and `VerbosityFilter` </details> <details> <summary>rust-cli/human-panic (human-panic)</summary> ### [`v2.0.4`](https://redirect.github.com/rust-cli/human-panic/blob/HEAD/CHANGELOG.md#204---2025-10-28) [Compare Source](https://redirect.github.com/rust-cli/human-panic/compare/v2.0.3...v2.0.4) ### [`v2.0.3`](https://redirect.github.com/rust-cli/human-panic/blob/HEAD/CHANGELOG.md#203---2025-07-08) [Compare Source](https://redirect.github.com/rust-cli/human-panic/compare/v2.0.2...v2.0.3) ##### Internal - Update toml </details> <details> <summary>rust-lang/log (log)</summary> ### [`v0.4.28`](https://redirect.github.com/rust-lang/log/blob/HEAD/CHANGELOG.md#0428---2025-09-02) [Compare Source](https://redirect.github.com/rust-lang/log/compare/0.4.27...0.4.28) </details> <details> <summary>serde-rs/serde (serde)</summary> ### [`v1.0.228`](https://redirect.github.com/serde-rs/serde/releases/tag/v1.0.228) [Compare Source](https://redirect.github.com/serde-rs/serde/compare/v1.0.227...v1.0.228) - Allow building documentation with `RUSTDOCFLAGS='--cfg=docsrs'` set for the whole dependency graph ([#&#8203;2995](https://redirect.github.com/serde-rs/serde/issues/2995)) ### [`v1.0.227`](https://redirect.github.com/serde-rs/serde/releases/tag/v1.0.227) [Compare Source](https://redirect.github.com/serde-rs/serde/compare/v1.0.226...v1.0.227) - Documentation improvements ([#&#8203;2991](https://redirect.github.com/serde-rs/serde/issues/2991)) ### [`v1.0.226`](https://redirect.github.com/serde-rs/serde/releases/tag/v1.0.226) [Compare Source](https://redirect.github.com/serde-rs/serde/compare/v1.0.225...v1.0.226) - Deduplicate variant matching logic inside generated Deserialize impl for adjacently tagged enums ([#&#8203;2935](https://redirect.github.com/serde-rs/serde/issues/2935), thanks [@&#8203;Mingun](https://redirect.github.com/Mingun)) ### [`v1.0.225`](https://redirect.github.com/serde-rs/serde/releases/tag/v1.0.225) [Compare Source](https://redirect.github.com/serde-rs/serde/compare/v1.0.224...v1.0.225) - Avoid triggering a deprecation warning in derived Serialize and Deserialize impls for a data structure that contains its own deprecations ([#&#8203;2879](https://redirect.github.com/serde-rs/serde/issues/2879), thanks [@&#8203;rcrisanti](https://redirect.github.com/rcrisanti)) ### [`v1.0.224`](https://redirect.github.com/serde-rs/serde/releases/tag/v1.0.224) [Compare Source](https://redirect.github.com/serde-rs/serde/compare/v1.0.223...v1.0.224) - Remove private types being suggested in rustc diagnostics ([#&#8203;2979](https://redirect.github.com/serde-rs/serde/issues/2979)) ### [`v1.0.223`](https://redirect.github.com/serde-rs/serde/releases/tag/v1.0.223) [Compare Source](https://redirect.github.com/serde-rs/serde/compare/v1.0.222...v1.0.223) - Fix serde\_core documentation links ([#&#8203;2978](https://redirect.github.com/serde-rs/serde/issues/2978)) ### [`v1.0.222`](https://redirect.github.com/serde-rs/serde/releases/tag/v1.0.222) [Compare Source](https://redirect.github.com/serde-rs/serde/compare/v1.0.221...v1.0.222) - Make `serialize_with` attribute produce code that works if respanned to 2024 edition ([#&#8203;2950](https://redirect.github.com/serde-rs/serde/issues/2950), thanks [@&#8203;aytey](https://redirect.github.com/aytey)) ### [`v1.0.221`](https://redirect.github.com/serde-rs/serde/releases/tag/v1.0.221) [Compare Source](https://redirect.github.com/serde-rs/serde/compare/v1.0.220...v1.0.221) - Documentation improvements ([#&#8203;2973](https://redirect.github.com/serde-rs/serde/issues/2973)) - Deprecate `serde_if_integer128!` macro ([#&#8203;2975](https://redirect.github.com/serde-rs/serde/issues/2975)) ### [`v1.0.220`](https://redirect.github.com/serde-rs/serde/releases/tag/v1.0.220) [Compare Source](https://redirect.github.com/serde-rs/serde/compare/v1.0.219...v1.0.220) - Add a way for data formats to depend on serde traits without waiting for serde\_derive compilation: <https://docs.rs/serde_core> ([#&#8203;2608](https://redirect.github.com/serde-rs/serde/issues/2608), thanks [@&#8203;osiewicz](https://redirect.github.com/osiewicz)) </details> <details> <summary>serde-rs/json (serde_json)</summary> ### [`v1.0.145`](https://redirect.github.com/serde-rs/json/releases/tag/v1.0.145) [Compare Source](https://redirect.github.com/serde-rs/json/compare/v1.0.144...v1.0.145) - Raise serde version requirement to >=1.0.220 ### [`v1.0.144`](https://redirect.github.com/serde-rs/json/releases/tag/v1.0.144) [Compare Source](https://redirect.github.com/serde-rs/json/compare/v1.0.143...v1.0.144) - Switch serde dependency to serde\_core ([#&#8203;1285](https://redirect.github.com/serde-rs/json/issues/1285)) ### [`v1.0.143`](https://redirect.github.com/serde-rs/json/releases/tag/v1.0.143) [Compare Source](https://redirect.github.com/serde-rs/json/compare/v1.0.142...v1.0.143) - Implement Clone and Debug for serde\_json::Map iterators ([#&#8203;1264](https://redirect.github.com/serde-rs/json/issues/1264), thanks [@&#8203;xlambein](https://redirect.github.com/xlambein)) - Implement Default for CompactFormatter ([#&#8203;1268](https://redirect.github.com/serde-rs/json/issues/1268), thanks [@&#8203;SOF3](https://redirect.github.com/SOF3)) - Implement FromStr for serde\_json::Map ([#&#8203;1271](https://redirect.github.com/serde-rs/json/issues/1271), thanks [@&#8203;mickvangelderen](https://redirect.github.com/mickvangelderen)) ### [`v1.0.142`](https://redirect.github.com/serde-rs/json/releases/tag/v1.0.142) [Compare Source](https://redirect.github.com/serde-rs/json/compare/v1.0.141...v1.0.142) - impl Default for \&Value ([#&#8203;1265](https://redirect.github.com/serde-rs/json/issues/1265), thanks [@&#8203;aatifsyed](https://redirect.github.com/aatifsyed)) ### [`v1.0.141`](https://redirect.github.com/serde-rs/json/releases/tag/v1.0.141) [Compare Source](https://redirect.github.com/serde-rs/json/compare/v1.0.140...v1.0.141) - Optimize string escaping during serialization ([#&#8203;1273](https://redirect.github.com/serde-rs/json/issues/1273), thanks [@&#8203;conradludgate](https://redirect.github.com/conradludgate)) </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 is behind base branch, 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/gitext-rs/git-branch-stash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNTkuNCIsInVwZGF0ZWRJblZlciI6IjQxLjE1OS40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 7d255f6 commit 98d1b3e

File tree

1 file changed

+50
-67
lines changed

1 file changed

+50
-67
lines changed

Cargo.lock

Lines changed: 50 additions & 67 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)