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

Open
renovate-bot wants to merge 1 commit 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@1.0.0
  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@1.0.0
  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@1.0.0
  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@1.0.0
  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@1.0.0
  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@1.0.0
  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@1.0.0 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@1.0.0 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@1.0.0 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@1.0.0 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@1.0.0 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@1.0.0 derive_more@2.1.1 ```
renovate-bot force-pushed renovate/derive_more-2.x-lockfile from ab66099054
Some checks failed
renovate/artifacts Artifact file update failure
to d57914b93c
Some checks failed
renovate/artifacts Artifact file update failure
2026-03-30 05:22:41 +05:30
Compare
renovate-bot force-pushed renovate/derive_more-2.x-lockfile from d57914b93c
Some checks failed
renovate/artifacts Artifact file update failure
to b4afbf69a3
Some checks failed
renovate/artifacts Artifact file update failure
2026-04-06 05:18:04 +05:30
Compare
renovate-bot force-pushed renovate/derive_more-2.x-lockfile from b4afbf69a3
Some checks failed
renovate/artifacts Artifact file update failure
to 6577eb118c
Some checks failed
renovate/artifacts Artifact file update failure
2026-04-20 05:18:48 +05:30
Compare
renovate-bot force-pushed renovate/derive_more-2.x-lockfile from 6577eb118c
Some checks failed
renovate/artifacts Artifact file update failure
to c368476020
Some checks failed
renovate/artifacts Artifact file update failure
2026-05-25 05:18:07 +05:30
Compare
renovate-bot force-pushed renovate/derive_more-2.x-lockfile from c368476020
Some checks failed
renovate/artifacts Artifact file update failure
to b1d39f3166 2026-05-28 23:34:15 +05:30
Compare
renovate-bot force-pushed renovate/derive_more-2.x-lockfile from b1d39f3166 to 11b70dd60c 2026-06-01 05:16:55 +05:30 Compare
renovate-bot force-pushed renovate/derive_more-2.x-lockfile from 11b70dd60c to 6491418160 2026-06-08 05:17:38 +05:30 Compare
This pull request can be merged automatically.
This branch is out-of-date with the base branch
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/derive_more-2.x-lockfile:renovate/derive_more-2.x-lockfile
git switch renovate/derive_more-2.x-lockfile

Merge

Merge the changes and update on Forgejo.

Warning: The "Autodetect manual merge" setting is not enabled for this repository, you will have to mark this pull request as manually merged afterwards.

git switch master
git merge --no-ff renovate/derive_more-2.x-lockfile
git switch renovate/derive_more-2.x-lockfile
git rebase master
git switch master
git merge --ff-only renovate/derive_more-2.x-lockfile
git switch renovate/derive_more-2.x-lockfile
git rebase master
git switch master
git merge --no-ff renovate/derive_more-2.x-lockfile
git switch master
git merge --squash renovate/derive_more-2.x-lockfile
git switch master
git merge --ff-only renovate/derive_more-2.x-lockfile
git switch master
git merge renovate/derive_more-2.x-lockfile
git push origin master
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!12
No description provided.