Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prevent E0658 by limiting enum-iterator version. (#132)
* 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 ``` * allow for 'variant_size_differences' Co-authored-by: Jason Ozias <jason.g.ozias@gmail.com>
- Loading branch information