Registry / utility / ext-sort

ext-sort

JSON →
library0.1.5rscratesunverified

External sort algorithm implementation for sorting large datasets that do not fit in memory.

# Cargo.toml [dependencies] ext-sort = "0.1.5"
INSTALL
IMPORT
SIG · EXT-SORT
E
ext-sort
utilityrustv0.1.5
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

ExternalSorter
use ext_sort::ExternalSorter;

Sorts data from stdin and writes sorted output to stdout.

use ext_sort::ExternalSorter; use std::io::{BufReader, BufWriter}; fn main() { let sorter = ExternalSorter::new(); let reader = BufReader::new(std::io::stdin()); let writer = BufWriter::new(std::io::stdout()); sorter.sort(reader, writer).unwrap(); }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.1.5latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
4 hits · last 30 days
node
4
Resources
ext-sort — cargo add ext-sort · libregistry