1
2
3
4
5
6
//! # Rust sort collection
//! This is the documentation for `sorts`. This crate contains a
//! collection of various sorting algorithms.
pub mod bubble_sort;

pub use bubble_sort::bubble_sort;