Merged
Conversation
- Bump derive_more from 0.99 to 2.1 and enable the required `std` feature
- Migrate `#[display(fmt = "...")]` attributes to the new `#[display("...")]` syntax
- Record the upgrade in CHANGES.md referencing #154
Coverage Report for CI Build 24755250108Coverage increased (+12.0%) to 76.17%Details
Uncovered ChangesNo uncovered changes found. Coverage RegressionsNo coverage regressions found. Coverage Stats
💛 - Coveralls |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
derive_morefrom 0.99 to 2.1 (MSRV 1.81, compatible with our 1.82.0).stdfeature (all non-stdfeatures are disabled by default in 2.x).src/error.rsdisplay attributes from#[display(fmt = "...")]to the new#[display("...")]syntax.Context
Audit of every direct dependency against MSRV 1.82.0 found
derive_moreas the only direct crate with a major upgrade available that still honors the MSRV. All other direct deps were already at their latest semver-compatible versions. Transitive crates held back byasync-std(syn 1.x,event-listener 2.x,async-channel 1.x) were left untouched — tracked separately under #153 with a proposedsmolmigration in a follow-up PR.This supersedes #150 (Dependabot's equivalent bump) — closing that PR is fine once this lands.
Test plan
cargo check(default features) — cleancargo check --features futures_support,tokio_support— cleancargo test --features futures_support,tokio_support— 35 tests + 12 doc-tests pass