-
Notifications
You must be signed in to change notification settings - Fork 3
Commit 13f9708
authored
chore(deps): Update compatible (#134)
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [anyhow](https://redirect.github.com/dtolnay/anyhow) | dependencies |
patch | `1.0.95` -> `1.0.96` |
| [bugreport](https://redirect.github.com/sharkdp/bugreport) |
dependencies | patch | `0.5.0` -> `0.5.1` |
| [clap](https://redirect.github.com/clap-rs/clap) | dependencies |
patch | `4.5.23` -> `4.5.31` |
| [flate2](https://redirect.github.com/rust-lang/flate2-rs) |
dependencies | minor | `1.0.35` -> `1.1.0` |
| [git-config-env](https://redirect.github.com/crate-ci/git-config-env)
| dependencies | patch | `0.2.2` -> `0.2.3` |
| [is-terminal](https://redirect.github.com/sunfishcode/is-terminal) |
dependencies | patch | `0.4.13` -> `0.4.15` |
| [log](https://redirect.github.com/rust-lang/log) | dependencies |
patch | `0.4.22` -> `0.4.26` |
| [once_cell](https://redirect.github.com/matklad/once_cell) |
dependencies | patch | `1.20.2` -> `1.20.3` |
| [serde](https://serde.rs)
([source](https://redirect.github.com/serde-rs/serde)) | dependencies |
patch | `1.0.217` -> `1.0.218` |
---
### Release Notes
<details>
<summary>dtolnay/anyhow (anyhow)</summary>
###
[`v1.0.96`](https://redirect.github.com/dtolnay/anyhow/releases/tag/1.0.96)
[Compare
Source](https://redirect.github.com/dtolnay/anyhow/compare/1.0.95...1.0.96)
- Documentation improvements
</details>
<details>
<summary>sharkdp/bugreport (bugreport)</summary>
###
[`v0.5.1`](https://redirect.github.com/sharkdp/bugreport/releases/tag/v0.5.1)
[Compare
Source](https://redirect.github.com/sharkdp/bugreport/compare/v0.5.0...v0.5.1)
#### What's Changed
- Fix CI issues by
[@​unlimitedsola](https://redirect.github.com/unlimitedsola) in
[https://github.com/sharkdp/bugreport/pull/18](https://redirect.github.com/sharkdp/bugreport/pull/18)
- Replace `sys-info` with `sysinfo` crate by
[@​unlimitedsola](https://redirect.github.com/unlimitedsola) in
[https://github.com/sharkdp/bugreport/pull/17](https://redirect.github.com/sharkdp/bugreport/pull/17)
#### New Contributors
- [@​unlimitedsola](https://redirect.github.com/unlimitedsola)
made their first contribution in
[https://github.com/sharkdp/bugreport/pull/18](https://redirect.github.com/sharkdp/bugreport/pull/18)
**Full Changelog**:
sharkdp/bugreport@v0.5.0...v0.5.1
</details>
<details>
<summary>clap-rs/clap (clap)</summary>
###
[`v4.5.31`](https://redirect.github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4531---2025-02-24)
[Compare
Source](https://redirect.github.com/clap-rs/clap/compare/v4.5.30...v4.5.31)
##### Features
- Add `ValueParserFactory` for `Saturating<T>`
###
[`v4.5.30`](https://redirect.github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4530---2025-02-17)
[Compare
Source](https://redirect.github.com/clap-rs/clap/compare/v4.5.29...v4.5.30)
##### Fixes
- *(assert)* Allow `num_args(0..=1)` to be used with `SetTrue`
- *(assert)* Clean up rendering of `takes_values` assertions
###
[`v4.5.29`](https://redirect.github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4529---2025-02-11)
[Compare
Source](https://redirect.github.com/clap-rs/clap/compare/v4.5.28...v4.5.29)
##### Fixes
- Change `ArgMatches::args_present` so not-present flags are considered
not-present (matching the documentation)
###
[`v4.5.28`](https://redirect.github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4528---2025-02-03)
[Compare
Source](https://redirect.github.com/clap-rs/clap/compare/v4.5.27...v4.5.28)
##### Features
- *(derive)* Unstable support for full markdown syntax for doc comments,
enabled with `unstable-markdown`
###
[`v4.5.27`](https://redirect.github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4527---2025-01-20)
[Compare
Source](https://redirect.github.com/clap-rs/clap/compare/v4.5.26...v4.5.27)
##### Documentation
- Iterate on tutorials and reference based on feedback
###
[`v4.5.26`](https://redirect.github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4526---2025-01-09)
[Compare
Source](https://redirect.github.com/clap-rs/clap/compare/v4.5.25...v4.5.26)
##### Fixes
- *(error)* Reduce binary size with the `suggestions` feature
###
[`v4.5.25`](https://redirect.github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4525---2025-01-09)
[Compare
Source](https://redirect.github.com/clap-rs/clap/compare/v4.5.24...v4.5.25)
##### Fixes
- *(help)* Reduce binary size
###
[`v4.5.24`](https://redirect.github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4524---2025-01-07)
[Compare
Source](https://redirect.github.com/clap-rs/clap/compare/v4.5.23...v4.5.24)
##### Fixes
- *(parser)* Correctly handle defaults with `ignore_errors(true)` and
when a suggestion is provided for an unknown argument
</details>
<details>
<summary>rust-lang/flate2-rs (flate2)</summary>
###
[`v1.1.0`](https://redirect.github.com/rust-lang/flate2-rs/releases/tag/1.1.0)
[Compare
Source](https://redirect.github.com/rust-lang/flate2-rs/compare/1.0.35...1.1.0)
#### What's Changed
- Fix cfgs by [@​kornelski](https://redirect.github.com/kornelski)
in
[https://github.com/rust-lang/flate2-rs/pull/441](https://redirect.github.com/rust-lang/flate2-rs/pull/441)
- update CI to use new wasi target by
[@​oyvindln](https://redirect.github.com/oyvindln) in
[https://github.com/rust-lang/flate2-rs/pull/444](https://redirect.github.com/rust-lang/flate2-rs/pull/444)
- Implement `Clone` for `CompressError` and `DecompressError` by
[@​mkrasnitski](https://redirect.github.com/mkrasnitski) in
[https://github.com/rust-lang/flate2-rs/pull/445](https://redirect.github.com/rust-lang/flate2-rs/pull/445)
- Update LICENSE-MIT by
[@​maximevtush](https://redirect.github.com/maximevtush) in
[https://github.com/rust-lang/flate2-rs/pull/448](https://redirect.github.com/rust-lang/flate2-rs/pull/448)
- feat: replace custom u16 le parser with existent rust method by
[@​CosminPerRam](https://redirect.github.com/CosminPerRam) in
[https://github.com/rust-lang/flate2-rs/pull/450](https://redirect.github.com/rust-lang/flate2-rs/pull/450)
- Fix CI by [@​Byron](https://redirect.github.com/Byron) in
[https://github.com/rust-lang/flate2-rs/pull/449](https://redirect.github.com/rust-lang/flate2-rs/pull/449)
- Do not use cloudflare-zlib-sys 0.3.4 by
[@​jongiddy](https://redirect.github.com/jongiddy) in
[https://github.com/rust-lang/flate2-rs/pull/451](https://redirect.github.com/rust-lang/flate2-rs/pull/451)
- Increase minimum compiler version to 1.67 by
[@​jongiddy](https://redirect.github.com/jongiddy) in
[https://github.com/rust-lang/flate2-rs/pull/452](https://redirect.github.com/rust-lang/flate2-rs/pull/452)
- deps: bump miniz_oxide to 0.8.4 by
[@​CosminPerRam](https://redirect.github.com/CosminPerRam) in
[https://github.com/rust-lang/flate2-rs/pull/459](https://redirect.github.com/rust-lang/flate2-rs/pull/459)
- deps(dev): update rand to 0.9 by
[@​CosminPerRam](https://redirect.github.com/CosminPerRam) in
[https://github.com/rust-lang/flate2-rs/pull/458](https://redirect.github.com/rust-lang/flate2-rs/pull/458)
- docs: fix spelling mistake in flate2::zlib::write::ZlibDecoder by
[@​CosminPerRam](https://redirect.github.com/CosminPerRam) in
[https://github.com/rust-lang/flate2-rs/pull/455](https://redirect.github.com/rust-lang/flate2-rs/pull/455)
- feat: remove explicit default impls by
[@​CosminPerRam](https://redirect.github.com/CosminPerRam) in
[https://github.com/rust-lang/flate2-rs/pull/457](https://redirect.github.com/rust-lang/flate2-rs/pull/457)
- Change private bounds from `R: Read` to `R: BufRead` by
[@​JonathanBrouwer](https://redirect.github.com/JonathanBrouwer)
in
[https://github.com/rust-lang/flate2-rs/pull/453](https://redirect.github.com/rust-lang/flate2-rs/pull/453)
- feat: replace manual copy loop with rust-provided function by
[@​CosminPerRam](https://redirect.github.com/CosminPerRam) in
[https://github.com/rust-lang/flate2-rs/pull/456](https://redirect.github.com/rust-lang/flate2-rs/pull/456)
- feat: reduce CrcReader::sum calls in GzEncoder::read_footer by
[@​CosminPerRam](https://redirect.github.com/CosminPerRam) in
[https://github.com/rust-lang/flate2-rs/pull/454](https://redirect.github.com/rust-lang/flate2-rs/pull/454)
- feat: remove redundant if guard on option value match by
[@​CosminPerRam](https://redirect.github.com/CosminPerRam) in
[https://github.com/rust-lang/flate2-rs/pull/464](https://redirect.github.com/rust-lang/flate2-rs/pull/464)
- feat: add Error associated type in zio::Ops to handle multiple errors
by [@​CosminPerRam](https://redirect.github.com/CosminPerRam) in
[https://github.com/rust-lang/flate2-rs/pull/461](https://redirect.github.com/rust-lang/flate2-rs/pull/461)
- feat: remove explicit redundant lifetime by
[@​CosminPerRam](https://redirect.github.com/CosminPerRam) in
[https://github.com/rust-lang/flate2-rs/pull/465](https://redirect.github.com/rust-lang/flate2-rs/pull/465)
- feat: impl From<Flush> to MZFlush by
[@​CosminPerRam](https://redirect.github.com/CosminPerRam) in
[https://github.com/rust-lang/flate2-rs/pull/462](https://redirect.github.com/rust-lang/flate2-rs/pull/462)
- upgrade zlib-rs to version `0.4.2` by
[@​folkertdev](https://redirect.github.com/folkertdev) in
[https://github.com/rust-lang/flate2-rs/pull/466](https://redirect.github.com/rust-lang/flate2-rs/pull/466)
#### New Contributors
- [@​mkrasnitski](https://redirect.github.com/mkrasnitski) made
their first contribution in
[https://github.com/rust-lang/flate2-rs/pull/445](https://redirect.github.com/rust-lang/flate2-rs/pull/445)
- [@​maximevtush](https://redirect.github.com/maximevtush) made
their first contribution in
[https://github.com/rust-lang/flate2-rs/pull/448](https://redirect.github.com/rust-lang/flate2-rs/pull/448)
- [@​CosminPerRam](https://redirect.github.com/CosminPerRam) made
their first contribution in
[https://github.com/rust-lang/flate2-rs/pull/450](https://redirect.github.com/rust-lang/flate2-rs/pull/450)
- [@​JonathanBrouwer](https://redirect.github.com/JonathanBrouwer)
made their first contribution in
[https://github.com/rust-lang/flate2-rs/pull/453](https://redirect.github.com/rust-lang/flate2-rs/pull/453)
**Full Changelog**:
rust-lang/flate2-rs@1.0.35...1.1.0
</details>
<details>
<summary>crate-ci/git-config-env (git-config-env)</summary>
###
[`v0.2.3`](https://redirect.github.com/crate-ci/git-config-env/blob/HEAD/CHANGELOG.md#023---2025-01-30)
[Compare
Source](https://redirect.github.com/crate-ci/git-config-env/compare/v0.2.2...v0.2.3)
##### Internal
- Update `winnow`
</details>
<details>
<summary>sunfishcode/is-terminal (is-terminal)</summary>
###
[`v0.4.15`](https://redirect.github.com/sunfishcode/is-terminal/compare/v0.4.14...v0.4.15)
[Compare
Source](https://redirect.github.com/sunfishcode/is-terminal/compare/v0.4.14...v0.4.15)
###
[`v0.4.14`](https://redirect.github.com/sunfishcode/is-terminal/compare/v0.4.13...v0.4.14)
[Compare
Source](https://redirect.github.com/sunfishcode/is-terminal/compare/v0.4.13...v0.4.14)
</details>
<details>
<summary>rust-lang/log (log)</summary>
###
[`v0.4.26`](https://redirect.github.com/rust-lang/log/blob/HEAD/CHANGELOG.md#0426---2025-02-18)
[Compare
Source](https://redirect.github.com/rust-lang/log/compare/0.4.25...0.4.26)
###
[`v0.4.25`](https://redirect.github.com/rust-lang/log/blob/HEAD/CHANGELOG.md#0425---2025-01-14)
[Compare
Source](https://redirect.github.com/rust-lang/log/compare/0.4.24...0.4.25)
###
[`v0.4.24`](https://redirect.github.com/rust-lang/log/blob/HEAD/CHANGELOG.md#0424---2025-01-11)
[Compare
Source](https://redirect.github.com/rust-lang/log/compare/0.4.23...0.4.24)
###
[`v0.4.23`](https://redirect.github.com/rust-lang/log/blob/HEAD/CHANGELOG.md#0423---2025-01-10-yanked)
[Compare
Source](https://redirect.github.com/rust-lang/log/compare/0.4.22...0.4.23)
</details>
<details>
<summary>matklad/once_cell (once_cell)</summary>
###
[`v1.20.3`](https://redirect.github.com/matklad/once_cell/compare/v1.20.2...v1.20.3)
[Compare
Source](https://redirect.github.com/matklad/once_cell/compare/v1.20.2...v1.20.3)
</details>
<details>
<summary>serde-rs/serde (serde)</summary>
###
[`v1.0.218`](https://redirect.github.com/serde-rs/serde/releases/tag/v1.0.218)
[Compare
Source](https://redirect.github.com/serde-rs/serde/compare/v1.0.217...v1.0.218)
- Documentation improvements
</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-dive).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzYuMiIsInVwZGF0ZWRJblZlciI6IjM5LjE3Ni4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>1 parent 94c2dd7 commit 13f9708Copy full SHA for 13f9708
File tree
Expand file treeCollapse file tree
1 file changed
+155
-47
lines changedFilter options
Expand file treeCollapse file tree
1 file changed
+155
-47
lines changedCollapse file: Cargo.lock
+155-47Lines changed: 155 additions & 47 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
0 commit comments