tikv / raft-rs

Raft distributed consensus algorithm implemented in Rust.
Apache License 2.0
2.86k stars 391 forks source link

remove useless conversion and vec to get rid of clippy warnings #523

Closed yaozongyou closed 11 months ago

yaozongyou commented 11 months ago

I'm using rustc 1.73.0-nightly (a6f8aa5a0 2023-08-11) and cargo clippy --all --all-targets -- -D clippy::all reporting useless_conversion and useless_vec warnings: https://rust-lang.github.io/rust-clippy/master/index.html#/useless_conversion https://rust-lang.github.io/rust-clippy/master/index.html#/useless_vec so just get rid of these warnings.

tisonkun commented 11 months ago

Thank you! Merging...