Crates.io | vsort |
lib.rs | vsort |
version | 0.2.0 |
source | src |
created_at | 2023-06-30 23:57:30.867241 |
updated_at | 2023-08-04 04:01:11.503747 |
description | GNU Version Sort Rust implementation |
homepage | |
repository | https://github.com/juansc/vsort/ |
max_upload_size | |
id | 905128 |
size | 24,582 |
A Rust library that implements the GNU version sort algorithm. It follows the spec given here.
cargo add vsort
Other version sort implementations don't match the GNU spec, and some were missing tests. The goal is to match the behavior of the core utils implementation as close as possible. If you notice any discrepancies please open an issue.
FFI is probably your best bet if you need absolute parity with GNU version sort. In the case you want their algorithm in Rust here it is :)
use vsort::{compare, sort};
fn main() {
let mut file_names = vec![
"a.txt",
"b 1.txt",
"b 10.txt",
"b 11.txt",
"b 5.txt",
"Ssm.txt",
];
// Pass to sort_by
file_names.sort_by(|a, b| compare(a, b));
assert_eq!(
file_names,
vec!["Ssm.txt", "a.txt", "b 1.txt", "b 5.txt", "b 10.txt", "b 11.txt"]
);
let mut file_names = vec![
"a.txt",
"b 1.txt",
"b 10.txt",
"b 11.txt",
"b 5.txt",
"Ssm.txt",
];
// Alternatively
sort(&mut file_names);
assert_eq!(
file_names,
vec!["Ssm.txt", "a.txt", "b 1.txt", "b 5.txt", "b 10.txt", "b 11.txt"]
);
}