chore(deps): update rust crate derive_more to v2.1.1 #42

Closed
renovate-bot wants to merge 0 commits from renovate/derive_more-2.x-lockfile into master
Member

This PR contains the following updates:

Package Type Update Change
derive_more dependencies minor 2.0.1 -> 2.1.1

Release Notes

JelteF/derive_more (derive_more)

v2.1.1

Compare Source

Fixed
  • .as_dyn_error() method hygiene inside Error derive expansion.
    (#​527)

v2.1.0

Compare Source

Added
  • Support #[display(rename_all = "<casing>")] attribute to change output for
    implicit naming of unit enum variants or unit structs when deriving Display.
    (#​443)
  • Support #[from_str(rename_all = "<casing>")] attribute for unit enum variants
    and unit structs when deriving FromStr.
    (#​467)
  • Support Option fields for Error::source() in Error derive.
    (#​459)
  • Support structs with no fields in FromStr derive.
    (#​469)
  • Add PartialEq derive similar to std's one, but considering generics correctly,
    and implementing ne() method as well.
    (#​473,
    #​475)
  • Add Eq derive similar to std's one, but considering generics correctly.
    (#​479)
  • Proxy-pass #[allow]/#[expect] attributes of the type in Constructor derive.
    (#​477)
  • Support Deref and DerefMut derives for enums.
    (#​485)
  • Support custom error in FromStr derive.
    (#​494)
  • Support custom error in TryInto derive.
    (#​503)
  • Support skipping fields in Add-like, AddAssign-like, Mul-like and
    MulAssign-like derives.
    (#​472)
Changed
  • The minimum supported Rust version (MSRV) is now Rust 1.81.
    (#​466)
  • Add-like, AddAssign-like, Mul-like and MulAssign-like derives now
    infer trait bounds for generics structurally (bound field types instead of
    type parameters directly).
    (#​472)
Fixed
  • Suppress deprecation warnings in generated code.
    (#​454)
  • Silent no-op when #[try_from(repr)] attribute is not specified for TryFrom derive.
    (#​458)
  • Missing trait bounds in AsRef/AsMut derives when associative types are involved.
    (#​474)
  • Erroneous code generated in Try/TryInto derives when Self type is present in
    the struct or enum definition.
    (#​489)
  • Dependency on unstable feature(error_generic_member_access) in Error derive when
    using Backtrace on a non-nightly toolchain.
    (#​513)
  • Broken support for #[<display-trait>("default formatting")] attribute without {_variant}
    being used as default for enum variants without explicit formatting.
    (#​495)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [derive_more](https://github.com/JelteF/derive_more) | dependencies | minor | `2.0.1` -> `2.1.1` | --- ### Release Notes <details> <summary>JelteF/derive_more (derive_more)</summary> ### [`v2.1.1`](https://github.com/JelteF/derive_more/blob/HEAD/CHANGELOG.md#211---2025-12-22) [Compare Source](https://github.com/JelteF/derive_more/compare/v2.1.0...v2.1.1) ##### Fixed - `.as_dyn_error()` method hygiene inside `Error` derive expansion. ([#&#8203;527](https://github.com/JelteF/derive_more/pull/527)) ### [`v2.1.0`](https://github.com/JelteF/derive_more/blob/HEAD/CHANGELOG.md#210---2025-12-02) [Compare Source](https://github.com/JelteF/derive_more/compare/v2.0.1...v2.1.0) ##### Added - Support `#[display(rename_all = "<casing>")]` attribute to change output for implicit naming of unit enum variants or unit structs when deriving `Display`. ([#&#8203;443](https://github.com/JelteF/derive_more/pull/443)) - Support `#[from_str(rename_all = "<casing>")]` attribute for unit enum variants and unit structs when deriving `FromStr`. ([#&#8203;467](https://github.com/JelteF/derive_more/pull/467)) - Support `Option` fields for `Error::source()` in `Error` derive. ([#&#8203;459](https://github.com/JelteF/derive_more/pull/459)) - Support structs with no fields in `FromStr` derive. ([#&#8203;469](https://github.com/JelteF/derive_more/pull/469)) - Add `PartialEq` derive similar to `std`'s one, but considering generics correctly, and implementing `ne()` method as well. ([#&#8203;473](https://github.com/JelteF/derive_more/pull/473), [#&#8203;475](https://github.com/JelteF/derive_more/pull/475)) - Add `Eq` derive similar to `std`'s one, but considering generics correctly. ([#&#8203;479](https://github.com/JelteF/derive_more/pull/479)) - Proxy-pass `#[allow]`/`#[expect]` attributes of the type in `Constructor` derive. ([#&#8203;477](https://github.com/JelteF/derive_more/pull/477)) - Support `Deref` and `DerefMut` derives for enums. ([#&#8203;485](https://github.com/JelteF/derive_more/pull/485)) - Support custom error in `FromStr` derive. ([#&#8203;494](https://github.com/JelteF/derive_more/pull/494)) - Support custom error in `TryInto` derive. ([#&#8203;503](https://github.com/JelteF/derive_more/pull/503)) - Support skipping fields in `Add`-like, `AddAssign`-like, `Mul`-like and `MulAssign`-like derives. ([#&#8203;472](https://github.com/JelteF/derive_more/pull/472)) ##### Changed - The minimum supported Rust version (MSRV) is now Rust 1.81. ([#&#8203;466](https://github.com/JelteF/derive_more/pull/466)) - `Add`-like, `AddAssign`-like, `Mul`-like and `MulAssign`-like derives now infer trait bounds for generics structurally (bound field types instead of type parameters directly). ([#&#8203;472](https://github.com/JelteF/derive_more/pull/472)) ##### Fixed - Suppress deprecation warnings in generated code. ([#&#8203;454](https://github.com/JelteF/derive_more/pull/454)) - Silent no-op when `#[try_from(repr)]` attribute is not specified for `TryFrom` derive. ([#&#8203;458](https://github.com/JelteF/derive_more/pull/458)) - Missing trait bounds in `AsRef`/`AsMut` derives when associative types are involved. ([#&#8203;474](https://github.com/JelteF/derive_more/pull/474)) - Erroneous code generated in `Try`/`TryInto` derives when `Self` type is present in the struct or enum definition. ([#&#8203;489](https://github.com/JelteF/derive_more/pull/489)) - Dependency on unstable `feature(error_generic_member_access)` in `Error` derive when using `Backtrace` on a non-nightly toolchain. ([#&#8203;513](https://github.com/JelteF/derive_more/pull/513)) - Broken support for `#[<display-trait>("default formatting")]` attribute without `{_variant}` being used as default for enum variants without explicit formatting. ([#&#8203;495](https://github.com/JelteF/derive_more/pull/495)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi41Mi44IiwidXBkYXRlZEluVmVyIjoiNDIuNTIuOCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJyZW5vdmF0ZS1ib3QiXX0=-->
Author
Member

⚠️ Artifact update problem

Renovate failed to update artifacts related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: common_utils/Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path common_utils/Cargo.toml --package derive_more@2.0.1 --precise 2.1.1
error: package ID specification `derive_more@2.0.1` did not match any packages
help: there are similar package ID specifications:

  derive_more@2.1.1

File name: dns/Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path dns/Cargo.toml --package derive_more@2.0.1 --precise 2.1.1
error: package ID specification `derive_more@2.0.1` did not match any packages
help: there are similar package ID specifications:

  derive_more@2.1.1

File name: dns/Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path dns/dnsserver/libbind9/Cargo.toml --package derive_more@2.0.1 --precise 2.1.1
error: package ID specification `derive_more@2.0.1` did not match any packages
help: there are similar package ID specifications:

  derive_more@2.1.1

File name: dns/Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path dns/dnsserver/libbind9/keystore/Cargo.toml --package derive_more@2.0.1 --precise 2.1.1
error: package ID specification `derive_more@2.0.1` did not match any packages
help: there are similar package ID specifications:

  derive_more@2.1.1

File name: dns/Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path dns/dnsserver/libbind9/libbind9db/Cargo.toml --package derive_more@2.0.1 --precise 2.1.1
error: package ID specification `derive_more@2.0.1` did not match any packages
help: there are similar package ID specifications:

  derive_more@2.1.1

File name: dns/Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path dns/dnsserver/libdnsserver/Cargo.toml --package derive_more@2.0.1 --precise 2.1.1
error: package ID specification `derive_more@2.0.1` did not match any packages
help: there are similar package ID specifications:

  derive_more@2.1.1

### ⚠️ Artifact update problem Renovate failed to update artifacts related to this branch. You probably do not want to merge this PR as-is. ♻ Renovate will retry this branch, including artifacts, only when one of the following happens: - any of the package files in this branch needs updating, or - the branch becomes conflicted, or - you click the rebase/retry checkbox if found above, or - you rename this PR's title to start with "rebase!" to trigger it manually The artifact failure details are included below: ##### File name: common_utils/Cargo.lock ``` Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path common_utils/Cargo.toml --package derive_more@2.0.1 --precise 2.1.1 error: package ID specification `derive_more@2.0.1` did not match any packages help: there are similar package ID specifications: derive_more@2.1.1 ``` ##### File name: dns/Cargo.lock ``` Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path dns/Cargo.toml --package derive_more@2.0.1 --precise 2.1.1 error: package ID specification `derive_more@2.0.1` did not match any packages help: there are similar package ID specifications: derive_more@2.1.1 ``` ##### File name: dns/Cargo.lock ``` Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path dns/dnsserver/libbind9/Cargo.toml --package derive_more@2.0.1 --precise 2.1.1 error: package ID specification `derive_more@2.0.1` did not match any packages help: there are similar package ID specifications: derive_more@2.1.1 ``` ##### File name: dns/Cargo.lock ``` Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path dns/dnsserver/libbind9/keystore/Cargo.toml --package derive_more@2.0.1 --precise 2.1.1 error: package ID specification `derive_more@2.0.1` did not match any packages help: there are similar package ID specifications: derive_more@2.1.1 ``` ##### File name: dns/Cargo.lock ``` Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path dns/dnsserver/libbind9/libbind9db/Cargo.toml --package derive_more@2.0.1 --precise 2.1.1 error: package ID specification `derive_more@2.0.1` did not match any packages help: there are similar package ID specifications: derive_more@2.1.1 ``` ##### File name: dns/Cargo.lock ``` Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path dns/dnsserver/libdnsserver/Cargo.toml --package derive_more@2.0.1 --precise 2.1.1 error: package ID specification `derive_more@2.0.1` did not match any packages help: there are similar package ID specifications: derive_more@2.1.1 ```
realaravinth closed this pull request 2026-06-20 19:07:13 +05:30
Author
Member

Renovate Ignore Notification

Because you closed this PR without merging, Renovate will ignore this update (2.0.1). You will get a PR once a newer version is released. To ignore this dependency forever, add it to the ignoreDeps array of your Renovate config.

If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR.

### Renovate Ignore Notification Because you closed this PR without merging, Renovate will ignore this update (`2.0.1`). You will get a PR once a newer version is released. To ignore this dependency forever, add it to the `ignoreDeps` array of your Renovate config. If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR.
Some checks failed
renovate/artifacts Artifact file update failure
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/pr/woodpecker Pipeline was successful

Pull request closed

Sign in to join this conversation.
No reviewers
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
LibrePages/neo!42
No description provided.