Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Rust crate strum to 0.26 #4915

Merged
merged 2 commits into from
Feb 14, 2024
Merged

Update Rust crate strum to 0.26 #4915

merged 2 commits into from
Feb 14, 2024

Conversation

oxide-renovate[bot]
Copy link
Contributor

@oxide-renovate oxide-renovate bot commented Jan 28, 2024

This PR contains the following updates:

Package Type Update Change
strum workspace.dependencies minor 0.25 -> 0.26

Release Notes

Peternator7/strum (strum)

v0.26.1

  • #​325: use core instead of std in VariantArray.

v0.26.0

Breaking Changes
  • The EnumVariantNames macro has been renamed VariantNames. 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.
  • Display now 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 VariantArray macro has been added. This macro adds an associated constant VARIANTS to 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 EnumTable macro 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;
    
    #[derive(Copy, Clone, Debug, EnumTable)]
    enum Color {
      Red,
      Blue,
      Green,
    }
    
    fn main() {
      let mut counts = ColorTable::filled(0);
      for color in &[Color::Red, Color::Red, Color::Green]] {
        counts[color] += 1;
      }
    
      assert_eq!(counts[Color::Red], 2);
      assert_eq!(counts[Color::Blue], 0);
      assert_eq!(counts[Color::Green], 1);
    }
  • Display has 2 new features:

    • the strum(prefix = "some_value") attribute on an enum now allows you to prepend a string onto every
      variant when you serialize it.

    • Custom to_string and serialize attributes now support string interopolation on serialization.

PR's Merged
  • #​322: avoid collisions on std::fmt::Debug
  • #​321: avoid conflicts with consecutive underscores.
  • #​314: add additional bounds to EnumIterator
  • #​311: add FusedIterator bounds to EnumIterator
  • #​297: New macro, add VariantArray
  • #​296: adds prefix attribute to To/From String macros.
  • #​294: use named enum fields in to_string macro.
  • #​288: discriminant enums now inherit the repr from the original enum.
  • #​279: Add EnumTable macro to generate a mapping between fieldless variants and data.

Configuration

📅 Schedule: Branch creation - "after 8pm,before 6am" in timezone America/Los_Angeles, Automerge - "after 8pm,before 6am" in timezone America/Los_Angeles.

🚦 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.

@oxide-renovate
Copy link
Contributor Author

oxide-renovate bot commented Jan 28, 2024

⚠ Artifact update problem

Renovate failed to update an artifact 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: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path Cargo.toml --package [email protected] --precise 0.26.1
    Updating crates.io index
error: failed to select a version for the requirement `strum = "^0.25"`
candidate versions found which didn't match: 0.26.1
location searched: crates.io index
required by package `bhyve_api v0.0.0 (https://github.com/oxidecomputer/propolis?rev=ff6c4df2e816eee6e7b2b0488777d30ef35ee217#ff6c4df2)`
    ... which satisfies git dependency `bhyve_api` (locked to 0.0.0) of package `illumos-utils v0.1.0 (/tmp/renovate/repos/github/oxidecomputer/omicron/illumos-utils)`
    ... which satisfies path dependency `illumos-utils` (locked to 0.1.0) of package `sled-hardware v0.1.0 (/tmp/renovate/repos/github/oxidecomputer/omicron/sled-hardware)`
    ... which satisfies path dependency `sled-hardware` (locked to 0.1.0) of package `bootstore v0.1.0 (/tmp/renovate/repos/github/oxidecomputer/omicron/bootstore)`
perhaps a crate was updated and forgotten to be re-vendored?

@oxide-renovate oxide-renovate bot added the dependencies Pull requests that update a dependency file label Jan 28, 2024
@oxide-renovate oxide-renovate bot force-pushed the renovate/strum-0.x branch 6 times, most recently from b4fdf03 to 51bc953 Compare February 5, 2024 04:07
@oxide-renovate oxide-renovate bot force-pushed the renovate/strum-0.x branch 2 times, most recently from 4767726 to 8be7033 Compare February 6, 2024 06:25
@oxide-renovate oxide-renovate bot changed the title Update Rust crate strum to 0.26 chore(deps): update rust crate strum to 0.26 Feb 6, 2024
@oxide-renovate oxide-renovate bot changed the title chore(deps): update rust crate strum to 0.26 Update Rust crate strum to 0.26 Feb 14, 2024
@sunshowers sunshowers enabled auto-merge (squash) February 14, 2024 20:24
@oxide-renovate
Copy link
Contributor Author

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

Warning: custom changes will be lost.

@sunshowers sunshowers merged commit d313f7f into main Feb 14, 2024
22 checks passed
@sunshowers sunshowers deleted the renovate/strum-0.x branch February 14, 2024 21:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant