From 31a1f9ff99f53ec2c335ada058e770a3b917a4a8 Mon Sep 17 00:00:00 2001 From: Xinyu Yang Date: Fri, 19 Jun 2026 22:18:17 +0800 Subject: [PATCH] Update library references in rust.md Updated serialization library reference and added new libraries for performance and testing. --- rust.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rust.md b/rust.md index 54d8379..ddc0934 100644 --- a/rust.md +++ b/rust.md @@ -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 @@ -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) @@ -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