From 57cf86327c1da0d9454d075dbea9b721ab3f0b83 Mon Sep 17 00:00:00 2001 From: Valentin Date: Wed, 25 Mar 2026 10:57:45 +0100 Subject: [PATCH] add natsort-rs to list --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 2736eb9..d5c278c 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,7 @@ - [Scientific Computing](#scientific-computing) - [Search & Indexing](#search--indexing) - [Serialization & Parsing](#serialization--parsing) +- [Sorting](#sorting) - [Tokenization & ML](#tokenization--ml) - [Validation & Data Modeling](#validation--data-modeling) - [Visualization](#visualization) @@ -162,6 +163,10 @@ This list tracks the growing movement of Python projects leveraging Rust for the - [lp_parser_rs](https://github.com/dandxy89/lp_parser_rs) - Parser for Linear Programming files supporting IBM CPLEX, FICO Xpress, Gurobi, and Mosek formats. - [ormsgpack](https://github.com/aviramha/ormsgpack) - Fast MessagePack serialization/deserialization, derived from orjson. +## Sorting + +- [natsort-rs](https://github.com/valentinstn/natsort-rs) - Fast natural sorting library, 5-45x faster than alternatives. + ## Tokenization & ML - [tokenizers](https://github.com/huggingface/tokenizers) - Hugging Face's fast tokenizer library with Python bindings.