ll-rs 0.0.5

A small ls -l clone in rust with colors!
Documentation
1
2
3
4
5
6
7
8
9
pub const RED: &str = "\x1b[31m";
pub const GREEN: &str = "\x1b[32m";
pub const YELLOW: &str = "\x1b[33m";
pub const BLUE: &str = "\x1b[34m";
pub const MAGENTA: &str = "\x1b[35m";
pub const CYAN: &str = "\x1b[36m";
pub const BLACK: &str = "\x1b[30m";
pub const BOLD: &str = "\x1b[1m";
pub const RESET: &str = "\x1b[0m";