Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion rust.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ IO
- [byteorder](https://github.com/BurntSushi/byteorder)
- Dir walk: [walkdir](https://github.com/BurntSushi/walkdir)
or [ignore](https://github.com/BurntSushi/ripgrep/tree/master/crates/ignore) for high performance.
- Serialization: [bincode](https://docs.rs/bincode/latest/bincode/)
- Serialization: [bincode-next](https://github.com/Apich-Organization/bincode)

Compression

Expand All @@ -92,6 +92,7 @@ Performance

- Concurrent programming: [Crossbeam](https://github.com/crossbeam-rs/crossbeam)
- Asynchronous programming: [tokio](https://github.com/tokio-rs/tokio)
- High performance runtime: [dtact](https://github.com/Apich-Organization/dtact)
- Data parallelism: [rayon](https://github.com/rayon-rs/rayon)
- Benchmarking: [hyperfine](https://github.com/sharkdp/hyperfine)
- PProf: [pprof](https://github.com/tikv/pprof-rs)
Expand All @@ -100,6 +101,8 @@ Testing

- [assert_cmd](https://github.com/assert-rs/assert_cmd)
- [predicates](https://github.com/assert-rs/predicates-rs)
- [proptest](https://github.com/proptest-rs/proptest)
- [loom](https://github.com/tokio-rs/loom)

Bioinformatics

Expand Down