poanetwork / hbbft

An implementation of the paper "Honey Badger of BFT Protocols" in Rust. This is a modular library of consensus.
Other
357 stars 96 forks source link

Instead of macro_use, use use. #307

Closed afck closed 6 years ago

mbr commented 6 years ago

Does this in any way affect rustfmt? Afaik, rustfmt does not reorder imports if they have #[macro_use] in front, because the order in which macros are imported actually matters.

I am guessing the CI will catch any issue at the very least, still it's something to maybe keep in mind =).