Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
Bump strum from 0.20.0 to 0.21.0 (#195)
Browse files Browse the repository at this point in the history
* Bump strum from 0.20.0 to 0.21.0

Bumps [strum](https://github.com/Peternator7/strum) from 0.20.0 to 0.21.0.
- [Release notes](https://github.com/Peternator7/strum/releases)
- [Changelog](https://github.com/Peternator7/strum/blob/master/CHANGELOG.md)
- [Commits](https://github.com/Peternator7/strum/commits)

---
updated-dependencies:
- dependency-name: strum
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* use dervie feature for strum; clippy and deny housekeeping

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: adoerr <[email protected]>
  • Loading branch information
dependabot[bot] and adoerr authored Jun 7, 2021
1 parent 0b24750 commit f87af2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion primitives/beefy/tests/light_client/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ impl LightClient {
let mut valid = 0;
for (signature, public) in signatures.into_iter().zip(validator_set.1.iter()) {
match signature {
Some(signature) if signature.is_valid_for(&public) => {
Some(signature) if signature.is_valid_for(public) => {
valid += 1;
}
_ => {}
Expand Down

0 comments on commit f87af2d

Please sign in to comment.