-
Notifications
You must be signed in to change notification settings - Fork 3
Commit 43fb726
authored
chore(deps): Update compatible (#123)
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` |
| [dunce](https://lib.rs/crates/dunce)
([source](https://gitlab.com/kornelski/dunce)) | dependencies | patch |
`1.0.4` -> `1.0.5` |
| [flate2](https://redirect.github.com/rust-lang/flate2-rs) |
dependencies | patch | `1.0.30` -> `1.0.34` |
| [is-terminal](https://redirect.github.com/sunfishcode/is-terminal) |
dependencies | patch | `0.4.12` -> `0.4.13` |
| [once_cell](https://redirect.github.com/matklad/once_cell) |
dependencies | minor | `1.19.0` -> `1.20.1` |
| [serde](https://serde.rs)
([source](https://redirect.github.com/serde-rs/serde)) | dependencies |
patch | `1.0.204` -> `1.0.210` |
|
[snapbox](https://redirect.github.com/assert-rs/trycmd/tree/main/crates/snapbox)
([source](https://redirect.github.com/assert-rs/snapbox)) |
dev-dependencies | patch | `0.6.16` -> `0.6.17` |
---
### 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
([#​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+
([#​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>kornelski/dunce (dunce)</summary>
###
[`v1.0.5`](https://gitlab.com/kornelski/dunce/compare/v1.0.4...v1.0.5)
[Compare
Source](https://gitlab.com/kornelski/dunce/compare/v1.0.4...v1.0.5)
</details>
<details>
<summary>rust-lang/flate2-rs (flate2)</summary>
###
[`v1.0.34`](https://redirect.github.com/rust-lang/flate2-rs/releases/tag/1.0.34)
[Compare
Source](https://redirect.github.com/rust-lang/flate2-rs/compare/1.0.33...1.0.34)
#### What's Changed
- Add minimum build test back in to CI by
[@​jongiddy](https://redirect.github.com/jongiddy) in
[https://github.com/rust-lang/flate2-rs/pull/426](https://redirect.github.com/rust-lang/flate2-rs/pull/426)
- docs: fix compression level range from 0-9 to 0-10 by
[@​ByteBaker](https://redirect.github.com/ByteBaker) in
[https://github.com/rust-lang/flate2-rs/pull/427](https://redirect.github.com/rust-lang/flate2-rs/pull/427)
- Document backend differences in compression levels by
[@​Shnatsel](https://redirect.github.com/Shnatsel) in
[https://github.com/rust-lang/flate2-rs/pull/430](https://redirect.github.com/rust-lang/flate2-rs/pull/430)
- Upgrade zlib-rs to 0.3.0 to get multiple bugfixes by
[@​Shnatsel](https://redirect.github.com/Shnatsel) in
[https://github.com/rust-lang/flate2-rs/pull/428](https://redirect.github.com/rust-lang/flate2-rs/pull/428)
- Better wording in compression level docs by
[@​Shnatsel](https://redirect.github.com/Shnatsel) in
[https://github.com/rust-lang/flate2-rs/pull/431](https://redirect.github.com/rust-lang/flate2-rs/pull/431)
#### New Contributors
- [@​ByteBaker](https://redirect.github.com/ByteBaker) made their
first contribution in
[https://github.com/rust-lang/flate2-rs/pull/427](https://redirect.github.com/rust-lang/flate2-rs/pull/427)
- [@​Shnatsel](https://redirect.github.com/Shnatsel) made their
first contribution in
[https://github.com/rust-lang/flate2-rs/pull/430](https://redirect.github.com/rust-lang/flate2-rs/pull/430)
**Full Changelog**:
rust-lang/flate2-rs@1.0.33...1.0.34
###
[`v1.0.33`](https://redirect.github.com/rust-lang/flate2-rs/releases/tag/1.0.33):
- fix minimal manifest versions
[Compare
Source](https://redirect.github.com/rust-lang/flate2-rs/compare/1.0.32...1.0.33)
#### What's Changed
- Fix msrv: Run msrv checks with minimal versions by
[@​NobodyXu](https://redirect.github.com/NobodyXu) in
[https://github.com/rust-lang/flate2-rs/pull/425](https://redirect.github.com/rust-lang/flate2-rs/pull/425)
#### New Contributors
- [@​NobodyXu](https://redirect.github.com/NobodyXu) made their
first contribution in
[https://github.com/rust-lang/flate2-rs/pull/425](https://redirect.github.com/rust-lang/flate2-rs/pull/425)
**Full Changelog**:
rust-lang/flate2-rs@1.0.32...1.0.33
###
[`v1.0.32`](https://redirect.github.com/rust-lang/flate2-rs/releases/tag/1.0.32):
- turn panic into error
[Compare
Source](https://redirect.github.com/rust-lang/flate2-rs/compare/1.0.31...1.0.32)
#### What's Changed
##### Fix
- Return error instead of packing on Z_MEM_ERROR by
[@​crazymerlyn](https://redirect.github.com/crazymerlyn) in
[https://github.com/rust-lang/flate2-rs/pull/423](https://redirect.github.com/rust-lang/flate2-rs/pull/423)
##### Other
- prepare new release by
[@​Byron](https://redirect.github.com/Byron) in
[https://github.com/rust-lang/flate2-rs/pull/416](https://redirect.github.com/rust-lang/flate2-rs/pull/416)
- update miniz_oxide dependency to 0.8.x by
[@​oyvindln](https://redirect.github.com/oyvindln) in
[https://github.com/rust-lang/flate2-rs/pull/420](https://redirect.github.com/rust-lang/flate2-rs/pull/420)
- update maintenance guide with recent news by
[@​Byron](https://redirect.github.com/Byron) in
[https://github.com/rust-lang/flate2-rs/pull/419](https://redirect.github.com/rust-lang/flate2-rs/pull/419)
- Check minimal version of Rust that compiles by
[@​jongiddy](https://redirect.github.com/jongiddy) in
[https://github.com/rust-lang/flate2-rs/pull/421](https://redirect.github.com/rust-lang/flate2-rs/pull/421)
- Remove non-existent build in CI by
[@​jongiddy](https://redirect.github.com/jongiddy) in
[https://github.com/rust-lang/flate2-rs/pull/422](https://redirect.github.com/rust-lang/flate2-rs/pull/422)
#### New Contributors
- [@​crazymerlyn](https://redirect.github.com/crazymerlyn) made
their first contribution in
[https://github.com/rust-lang/flate2-rs/pull/423](https://redirect.github.com/rust-lang/flate2-rs/pull/423)
**Full Changelog**:
rust-lang/flate2-rs@1.0.31...1.0.32
###
[`v1.0.31`](https://redirect.github.com/rust-lang/flate2-rs/blob/HEAD/CHANGELOG.md#1031-2024-08-03)
[Compare
Source](https://redirect.github.com/rust-lang/flate2-rs/compare/1.0.30...1.0.31)
This release allows using `libz-rs` in the latest version, v0.2.1.
##### Commit Statistics
<csr-read-only-do-not-edit/>
- 7 commits contributed to the release over the course of 95 calendar
days.
- 95 days passed between releases.
- 0 commits were understood as
[conventional](https://www.conventionalcommits.org).
- 0 issues like '(#ID)' were seen in commit messages
##### Commit Details
<csr-read-only-do-not-edit/>
<details><summary>view details</summary>
- **Uncategorized**
- Add exclusion rule to not package github or git specific files with
crate.
([`25541bd`](https://redirect.github.com/Byron/flate2-rs/commit/25541bd2aa4fd24fbb2b370eb3c2742724f956ac))
- Crate and update changelog in preparation for release.
([`1dbed76`](https://redirect.github.com/Byron/flate2-rs/commit/1dbed76ca0f63b215faa5ad321a42bb629686456))
- Merge pull request
[#​415](https://redirect.github.com/rust-lang/flate2-rs/issues/415)
from folkertdev/bump-version-zlib-rs-0.2.1
([`a7853c0`](https://redirect.github.com/Byron/flate2-rs/commit/a7853c0f803abb45858baf82d504ed14d77cb8c0))
- Release version 1.0.31: bump libz-rs-sys version
([`e6f6949`](https://redirect.github.com/Byron/flate2-rs/commit/e6f694918b3237175e3729e6365e83f9a66518a9))
- Merge pull request
[#​414](https://redirect.github.com/rust-lang/flate2-rs/issues/414)
from yestyle/main
([`9e6af00`](https://redirect.github.com/Byron/flate2-rs/commit/9e6af00a8bd9593f9e1c6421f9d27ccdb13a03b7))
- Remove duplicate word in top-most doc
([`411d641`](https://redirect.github.com/Byron/flate2-rs/commit/411d6414398099c85e1b8fc568ec8929d208777d))
- Merge pull request
[#​408](https://redirect.github.com/rust-lang/flate2-rs/issues/408)
from marxin/document-read-after-end
([`1a0daec`](https://redirect.github.com/Byron/flate2-rs/commit/1a0daec607455f30651674675abb01715586f4d1))
</details>
</details>
<details>
<summary>sunfishcode/is-terminal (is-terminal)</summary>
###
[`v0.4.13`](https://redirect.github.com/sunfishcode/is-terminal/compare/v0.4.12...v0.4.13)
[Compare
Source](https://redirect.github.com/sunfishcode/is-terminal/compare/v0.4.12...v0.4.13)
</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,
[#​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>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+
([#​2816](https://redirect.github.com/serde-rs/serde/issues/2816),
thanks [@​MathiasKoch](https://redirect.github.com/MathiasKoch))
- Make `serde::ser::StdError` and `serde::de::StdError` equivalent to
`core::error::Error` on Rust 1.81+
([#​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
([#​2805](https://redirect.github.com/serde-rs/serde/issues/2805),
thanks [@​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
([#​2802](https://redirect.github.com/serde-rs/serde/issues/2802),
thanks [@​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`
([#​2795](https://redirect.github.com/serde-rs/serde/issues/2795),
thanks [@​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
([#​2567](https://redirect.github.com/serde-rs/serde/issues/2567),
thanks [@​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
([#​2785](https://redirect.github.com/serde-rs/serde/issues/2785),
thanks [@​Mingun](https://redirect.github.com/Mingun))
- Avoid triggering a collection_is_never_read lint in the
deserialization of enums containing flattened fields
([#​2791](https://redirect.github.com/serde-rs/serde/issues/2791))
</details>
<details>
<summary>assert-rs/snapbox (snapbox)</summary>
###
[`v0.6.17`](https://redirect.github.com/assert-rs/snapbox/compare/snapbox-v0.6.16...snapbox-v0.6.17)
[Compare
Source](https://redirect.github.com/assert-rs/snapbox/compare/snapbox-v0.6.16...snapbox-v0.6.17)
</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/gitext-rs/git-dive).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC45Ny4wIiwidXBkYXRlZEluVmVyIjoiMzguOTcuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>1 parent aa4390a commit 43fb726Copy full SHA for 43fb726
File tree
Expand file treeCollapse file tree
1 file changed
+50
-29
lines changedFilter options
Expand file treeCollapse file tree
1 file changed
+50
-29
lines changedCollapse file: Cargo.lock
+50-29Lines changed: 50 additions & 29 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
0 commit comments