rtask/lib.rs
1//! Rtask - A modern YAML-based task runner
2//!
3//! Rtask is a rewrite of Tusk in Rust, providing a fast and reliable way to define
4//! and execute project tasks using simple YAML configuration files.
5
6// Public modules
7pub mod cli;
8pub mod config;
9pub mod error;
10pub mod runner;
11pub mod ui;
12pub mod utils;
13
14// Re-export commonly used types
15pub use error::{Result, RtaskError};
16
17/// Current version of Rtask
18pub const VERSION: &str = env!("CARGO_PKG_VERSION");