Skip to content
Merged
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: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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.
Expand Down
Loading