uymas_cli 2.0.2

the fast and minimal dependency development tool for rust language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
///  依赖库版本信息库
pub const VERSION: &'static str = "2.0.1";
/// 项目代码
pub const PROJECT: &'static str = "learn";

// 命令行工具
pub mod cmd;
// 命令行参数
pub mod args;
// 方法集合
pub mod action;

// 测试用例,使用 tests 代替
// #[cfg(test)]
// mod test_args;