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

Prevent E0658 by limiting enum-iterator version. #132

Merged
merged 3 commits into from Aug 30, 2022

Commits on Aug 30, 2022

  1. Prevent E0658 by limiting enum-iterator version.

    enum-iterator 1.2.0 is using unstable features, causing projects using vergen to fail when building:
    ```
    error[E0658]: use of unstable library feature 'array_from_fn'
       --> /root/.cargo/registry/src/github.com-1285ae84e5963aae/enum-iterator-1.2.0/src/lib.rs:554:18
        |
    554 |             Some(core::array::from_fn(|_| unreachable!()))
        |                  ^^^^^^^^^^^^^^^^^^^^
        |
        = note: see issue #89379 <rust-lang/rust#89379> for more information
    ```
    joaoantoniocardoso committed Aug 30, 2022
    Copy the full SHA
    09b8624 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    d35a00d View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    429a689 View commit details
    Browse the repository at this point in the history