tikv / raft-rs

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

*: fix missing features #464

Closed BusyJay closed 2 years ago

BusyJay commented 2 years ago

Cargo seems enable protobuf bytes features when building in the workspace. But it will not when it's included as a third project's dependency. This PR fixes the problem by enabling bytes explicitly.

Close #463