5 releases

new 0.1.4 Nov 21, 2024
0.1.3 Nov 7, 2024
0.1.2 Nov 4, 2024
0.1.1 Mar 13, 2024
0.1.0 Jul 8, 2022

#260 in Text processing

Download history 2596/week @ 2024-08-04 1203/week @ 2024-08-11 1201/week @ 2024-08-18 1078/week @ 2024-08-25 1035/week @ 2024-09-01 879/week @ 2024-09-08 803/week @ 2024-09-15 1012/week @ 2024-09-22 909/week @ 2024-09-29 843/week @ 2024-10-06 780/week @ 2024-10-13 725/week @ 2024-10-20 784/week @ 2024-10-27 1474/week @ 2024-11-03 904/week @ 2024-11-10 670/week @ 2024-11-17

3,897 downloads per month
Used in toster

MIT/Apache

24KB
310 lines

numeric-sort

A zero-allocation, human-readable sorting library.

This library provides convenient ways to compare or sort strings and keep numeric components in proper numerical order. For instance "test-7" will come before "test-10", contrary to traditional lexicographic comparison of characters.

The primary functions of interest are [cmp], sort, and sort_unstable.

no-std

numeric-sort is compatible with no-std projects out of the box.

However, by default we link to alloc in order to support sort (stable sorts require allocations). To prevent this, you can disable the default alloc feature, which will disable sort but leave all other functions still available.

[dependencies]
numeric-sort = { version = "...", default-features = false }

No runtime deps

Features