monkey-rust
monkey-rust copied to clipboard
chore(deps): bump strum from 0.25.0 to 0.26.2
Bumps strum from 0.25.0 to 0.26.2.
Release notes
Sourced from strum's releases.
v0.26.2
What's Changed
- Fix AsRefStr docs to specify lifetime constraints by
@DTrippein Peternator7/strum#330- Fix missing generics on impl for EnumTryAs by
@hasali19in Peternator7/strum#337- feat(as_ref_str): enable
prefixattribute forAsRefStrderive by@vbrvkin Peternator7/strum#334- Add dependabot by
@oriontvvin Peternator7/strum#333- Fix docs that say array instead of slice by
@Peternator7in Peternator7/strum#343- Hide EnumTable by
@Peternator7in Peternator7/strum#344
- EnumTable will likely be deprecated.
New Contributors
@DTrippemade their first contribution in Peternator7/strum#330@hasali19made their first contribution in Peternator7/strum#337@vbrvkmade their first contribution in Peternator7/strum#334@oriontvvmade their first contribution in Peternator7/strum#333Full Changelog: https://github.com/Peternator7/strum/compare/v0.26.1...v0.26.2
v0.26.1
0.26.1
- #325: use
coreinstead ofstdin VariantArray.0.26.0
Breaking Changes
- The
EnumVariantNamesmacro has been renamedVariantNames. The deprecation warning should steer you in the right direction for fixing the warning.- The Iterator struct generated by EnumIter now has new bounds on it. This shouldn't break code unless you manually added the implementation in your code.
Displaynow supports format strings using named fields in the enum variant. This should be a no-op for most code. However, if you were outputting a string like"Hello {field}", this will now be interpretted as a format string.- EnumDiscriminant now inherits the repr and discriminant values from your main enum. This makes the discriminant type closer to a mirror of the original and that's always the goal.
New features
The
VariantArraymacro has been added. This macro adds an associated constantVARIANTSto your enum. The constant is a&'static [Self]slice so that you can access all the variants of your enum. This only works on enums that only have unit variants.use strum::VariantArray;#[derive(Debug, VariantArray)] enum Color { Red, Blue, Green,
... (truncated)
Changelog
Sourced from strum's changelog.
0.26.2
- #337: Fix missing generic impls for
EnumTryAs- #334: Support prefix in
AsRefStr. Technically a breaking change, butprefixwas just added in0.26.0so it's a newer feature and it makes the feature more consisent in general.0.26.1
- #325: use
coreinstead ofstdin VariantArray.0.26.0
Breaking Changes
- The
EnumVariantNamesmacro has been renamedVariantNames. The deprecation warning should steer you in the right direction for fixing the warning.- The Iterator struct generated by EnumIter now has new bounds on it. This shouldn't break code unless you manually added the implementation in your code.
Displaynow supports format strings using named fields in the enum variant. This should be a no-op for most code. However, if you were outputting a string like"Hello {field}", this will now be interpretted as a format string.- EnumDiscriminant now inherits the repr and discriminant values from your main enum. This makes the discriminant type closer to a mirror of the original and that's always the goal.
New features
The
VariantArraymacro has been added. This macro adds an associated constantVARIANTSto your enum. The constant is a&'static [Self]slice so that you can access all the variants of your enum. This only works on enums that only have unit variants.use strum::VariantArray;#[derive(Debug, VariantArray)] enum Color { Red, Blue, Green, }
fn main() { println!("{:?}", Color::VARIANTS); // prints: ["Red", "Blue", "Green"] }
The
EnumTablemacro has been experimentally added. This macro adds a new type that stores an item for each variant of the enum. This is useful for storing a value for each variant of an enum. This is an experimental feature because I'm not convinced the current api surface area is correct.use strum::EnumTable;
... (truncated)
Commits
- See full diff in compare view
You can trigger a rebase of this PR by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Note Automatic rebases have been disabled on this pull request as it has been open for over 30 days.