uymas_cli 2.0.0

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.0";
/// 项目代码
pub const PROJECT: &'static str = "learn";

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

// 测试用例
#[cfg(test)]
mod test;