cycle-sort

crates.io Documentation

Rust library for sorting slices using Cycle sort. The functions follow the same semantics as in the standard library. I built this to learn Rust.

In your Cargo.toml:

toml [dependencies] cycle-sort = "0.1.0"

and in your crate root:

rust extern crate cycle_sort;