stackenv 0.1.26

Native, zero-container multi-project dev environment manager. No Docker, no VMs.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// Green — a step succeeded.
pub fn ok(text: &str) -> String {
    console::style(text).green().to_string()
}

/// Amber — worth noticing, not a failure.
pub fn warn(text: &str) -> String {
    console::style(text).yellow().to_string()
}

/// Red — a step failed.
pub fn err(text: &str) -> String {
    console::style(text).red().to_string()
}