Sort Library
This is a Rust library containing implementations of various sorting algorithms. You can use this library to sort slices of any comparable type.
Usage
1. Download and Use Locally
To use this library locally, follow these steps:
-
Clone the repository:
Replace <destination_folder_path> with the path to the folder where you want to clone the repository. sort_library and the project where you want to use this library must be in the same folder.
-
Use the sorting algorithms in your Rust project by importing the desired module:
use ; -

2. Using via GitHub in dependencies
Add the following line to your Cargo.toml file under [dependencies]:
```toml
sort_library = { git = "https://github.com/rulik04/sort_library.git" }
```
Then you can import and use the sorting algorithms as mentioned in the previous section.
3. Add via crates.io
Add the library to your Cargo.toml file using the cargo add command:
And then you can import and use the sorting algorithms as mentioned in the previous sections.