aurae-runtime / aurae

Distributed systems runtime daemon written in Rust.
https://aurae.io
Apache License 2.0
1.83k stars 89 forks source link

fix clippy lint errors with latest cargo #489

Closed dmah42 closed 7 months ago

dmah42 commented 7 months ago

updating the dependencies seems to help with the newer clippy lint errors.

dmah42 commented 7 months ago

Didn't do a local build, but LGTM.

From my understanding, resolver = "2" is the default since we are only using edition 2021, but I assume you had a reason to add it explicitly.

Edit: Just realized I put resolver = "2" in my own project too (can't remember why).

it was a cargo warning about a mismatch between the default (1) and the default for 2021 (2).