Updates the requirements on strum to permit the latest version.
Changelog
*Sourced from [strum's changelog](https://github.com/Peternator7/strum/blob/master/CHANGELOG.md).*
> ## 0.16.0
>
> * Added serialize UPPERCASE
> * Added "case-styles" to match the formatting convention they imply such as `kebab-case` and `camelCase`.
> * Added Enum Variant Names to improve compatibility with `structopt` and `clap`. [#56](https://github-redirect.dependabot.com/Peternator7/strum/pull/56)
> * Added derive re-export to `strum` to allow re-exporting macros from main crate. [#57](https://github-redirect.dependabot.com/Peternator7/strum/pull/57)
> * Bumped syn and quote to `1.0`. This raises minimal compatible rust version to `1.31`.
> * Did internal refactoring to improve organization of code. Shouldn't change user-facing api though.
> * Added license file to subdirectories so they are included in crate distros.
>
> ## 0.15.0
>
> ### Added
>
> * Added Feature flags to rename macros. This is to improve compatibility with older versions of rust. [Wiki](https://github.com/Peternator7/strum/wiki/Macro-Renames)
>
> ## 0.14.0
>
> ### Added
>
> * Allow Missing Docs on EnumCount. [PR [#43](https://github-redirect.dependabot.com/Peternator7/strum/issues/43)](https://github-redirect.dependabot.com/Peternator7/strum/pull/43)
> * Fix serialize_all in `AsRefStr`, `AsStaticStr` and `IntoStaticStr`. [PR [#42](https://github-redirect.dependabot.com/Peternator7/strum/issues/42)](https://github-redirect.dependabot.com/Peternator7/strum/pull/42)
> * This is a bug fix, but it may break code that was relying on the incorrect behavior.
>
> ## 0.13.0
>
> ### Added
>
> * Added a derive to implement `From` for `&'static str`. This deprecates `AsStaticStr` since
> the new solution doesn't require a `strum` specific trait to use.
>
> ## 0.12.0
>
> ### Added
>
> * Serialization case can be controlled using `#[strum(serialize_all = "snake_case")]`. ([#21](https://github-redirect.dependabot.com/Peternator7/strum/issues/21)[#21](https://github-redirect.dependabot.com/Peternator7/strum/issues/21))
> * `#[derive(EnumDiscriminants)]` generates enum with variants without fields. ([#33](https://github-redirect.dependabot.com/Peternator7/strum/issues/33)[#33](https://github-redirect.dependabot.com/Peternator7/strum/issues/33))
>
> [#21](https://github-redirect.dependabot.com/Peternator7/strum/issues/21): [Peternator7/strum#21](https://github-redirect.dependabot.com/Peternator7/strum/issues/21)
> [#33](https://github-redirect.dependabot.com/Peternator7/strum/issues/33): [Peternator7/strum#33](https://github-redirect.dependabot.com/Peternator7/strum/issues/33)
>
> ## 0.10.0
>
> ### Added
>
> * Implemented `Clone` for `EnumIter`s. ([#18](https://github-redirect.dependabot.com/Peternator7/strum/issues/18)[#18](https://github-redirect.dependabot.com/Peternator7/strum/issues/18))
> * Added `AsStaticRef` derive to allow enums to `impl AsStaticRef`. ([#23](https://github-redirect.dependabot.com/Peternator7/strum/issues/23)[#23](https://github-redirect.dependabot.com/Peternator7/strum/issues/23))
>
> ### Fixed
>
> ... (truncated)
Commits
- See full diff in [compare view](https://github.com/Peternator7/strum/commits)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will 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 version` will 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 dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
- `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
Finally, you can contact us by mentioning @dependabot.
Updates the requirements on strum to permit the latest version.
Changelog
*Sourced from [strum's changelog](https://github.com/Peternator7/strum/blob/master/CHANGELOG.md).* > ## 0.16.0 > > * Added serialize UPPERCASE > * Added "case-styles" to match the formatting convention they imply such as `kebab-case` and `camelCase`. > * Added Enum Variant Names to improve compatibility with `structopt` and `clap`. [#56](https://github-redirect.dependabot.com/Peternator7/strum/pull/56) > * Added derive re-export to `strum` to allow re-exporting macros from main crate. [#57](https://github-redirect.dependabot.com/Peternator7/strum/pull/57) > * Bumped syn and quote to `1.0`. This raises minimal compatible rust version to `1.31`. > * Did internal refactoring to improve organization of code. Shouldn't change user-facing api though. > * Added license file to subdirectories so they are included in crate distros. > > ## 0.15.0 > > ### Added > > * Added Feature flags to rename macros. This is to improve compatibility with older versions of rust. [Wiki](https://github.com/Peternator7/strum/wiki/Macro-Renames) > > ## 0.14.0 > > ### Added > > * Allow Missing Docs on EnumCount. [PR [#43](https://github-redirect.dependabot.com/Peternator7/strum/issues/43)](https://github-redirect.dependabot.com/Peternator7/strum/pull/43) > * Fix serialize_all in `AsRefStr`, `AsStaticStr` and `IntoStaticStr`. [PR [#42](https://github-redirect.dependabot.com/Peternator7/strum/issues/42)](https://github-redirect.dependabot.com/Peternator7/strum/pull/42) > * This is a bug fix, but it may break code that was relying on the incorrect behavior. > > ## 0.13.0 > > ### Added > > * Added a derive to implement `FromCommits
- See full diff in [compare view](https://github.com/Peternator7/strum/commits)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will 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 version` will 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 dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) Finally, you can contact us by mentioning @dependabot.