# surt Implementations of sorting algorithms in Rust. ## Compiling ```bash cargo build [--release] ``` ## Running the tests The following tests are performed: - is the output sorted - is the output stable according to the input Inputs are generated by [quickcheck](https://docs.rs/quickcheck/0.4.2/quickcheck/). ```bash cargo test ```