raft-rs
raft-rs copied to clipboard
Move benches into harness
It seems that benches are unable to use harness based on the current project structure. How about moving the entire benches into harness? @nrc @Hoverbear
Now:
benches
harness
src
After:
harness
benches
src
tests
src
I think this is reasonable!
I find some benchmarks about ProgressSets use some internal APIs. Is it better to move those benchmarks to source code file? I guess it's helpful to clean our APIs.
Maybe a src/progress/benches.rs?