homeboy 0.31.1

CLI for multi-component deployment and development workflow automation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Generic utility primitives with zero domain knowledge.
//!
//! - `command` - Command execution with error handling
//! - `io` - File I/O with consistent error handling
//! - `parser` - Text extraction and manipulation
//! - `shell` - Shell escaping and quoting
//! - `template` - String template rendering
//! - `token` - String comparison and normalization
//! - `validation` - Input validation helpers

pub mod command;
pub mod io;
pub mod parser;
pub mod shell;
pub mod token;
pub mod validation;
pub(crate) mod template;