file_alphabetizer
An library that alphabetizes a given file. Can be used as a crate in your own applications or as a standalone binary
Usage
Within a Rust project
- Import the library into your Cargo.toml like so:
file_alphabetizer = "1.0" - Import the crate and use the alphabetize method, like so.
(Currently, path starts at parent directory of code calling it):
use ; use file_alphabetizer;
As a CLI tool
- Run
cargo runfrom the command line, within the project's directory.