titta 0.1.33

An alternative to ls built in Rust.
1
2
3
4
5
6
7
8
9
10
// static
pub const HELP_BODY: &str = include_str!("help_body.txt");

// app info
pub const APP_NAME: &str = env!("CARGO_PKG_NAME");
pub const APP_VERS: &str = env!("CARGO_PKG_VERSION");
pub const APP_REPO: &str = env!("CARGO_PKG_REPOSITORY");
pub const APP_DESC: &str = env!("CARGO_PKG_DESCRIPTION");
pub const APP_AUTH: &str = env!("CARGO_PKG_AUTHORS");