File tree Expand file tree Collapse file tree 2 files changed +77
-6
lines changed Expand file tree Collapse file tree 2 files changed +77
-6
lines changed Original file line number Diff line number Diff line change
1
+ ## todo-rs
2
+
3
+ [ ![ PRs Welcome] ( https://img.shields.io/badge/PRs-welcome-brightgreen.svg )] ( https://github.com/liruifengv/todo-rs )
4
+
5
+ English | [ 简体中文] ( ./README.md )
6
+
7
+ A minimalist CLI todo list write by rust.
8
+
9
+ ## Usage
10
+
11
+ ``` console
12
+ ➜ ~ rodo --help
13
+ rodo 0.1.0
14
+ Rodo is a simple todo list manager.
15
+
16
+ USAGE:
17
+ rodo.exe <SUBCOMMAND>
18
+
19
+ OPTIONS:
20
+ -h, --help Print help information
21
+ -V, --version Print version information
22
+
23
+ SUBCOMMANDS:
24
+ add Add a todo item.
25
+ help Print this message or the help of the given subcommand(s)
26
+ info Show rodo info.
27
+ list List all the todo items. [aliases: ls, ll, la]
28
+ remove Remove a todo item. [aliases: rm]
29
+ ```
30
+
31
+ ## Development
32
+
33
+ ``` bash
34
+ # clone the repo
35
+ git clone
36
+
37
+ # run the program in local
38
+ cargo run
39
+
40
+ # build the program
41
+ cargo build
42
+ ```
43
+
44
+ ## ISSUE
45
+
46
+ Please [ contact me] ( https://github.com/liruifengv/todo-rs/issues ) if you encounter any problems.
47
+
48
+ ## Contributing
49
+
50
+ You can open a PR or issue to contribute to this project.
51
+
52
+ ## License
53
+
54
+ todo-rs is released under the MIT License. See the bundled
55
+ [ LICENSE] ( ./LICENSE ) file for details.
Original file line number Diff line number Diff line change 1
1
## todo-rs
2
2
3
- A minimalist CLI todo list write by rust.
3
+ [ ![ PRs Welcome ] ( https://img.shields.io/badge/PRs-welcome-brightgreen.svg )] ( https://github.com/liruifengv/todo-rs )
4
4
5
- ## Usage
5
+ 简体中文 | [ English] ( ./README.en-US.md )
6
+
7
+ Rust 开发的简易命令行 TODO LIST。
8
+
9
+ ## 用法
6
10
7
11
``` console
8
12
➜ ~ rodo --help
@@ -24,15 +28,27 @@ SUBCOMMANDS:
24
28
remove Remove a todo item. [aliases: rm]
25
29
```
26
30
27
- ## Development
31
+ ## 开发
28
32
29
33
``` bash
30
- # clone the repo
34
+ # 克隆这个仓库
31
35
git clone
32
36
33
- # run the program in local
37
+ # 本地运行
34
38
cargo run
35
39
36
- # build the program
40
+ # 打包
37
41
cargo build
38
42
```
43
+
44
+ ## ISSUE
45
+
46
+ 如果你遇到任何问题,欢迎[ 联系我] ( https://github.com/liruifengv/todo-rs/issues ) 。
47
+
48
+ ## Contributing
49
+
50
+ 你可以随时给这个项目提 PR。
51
+
52
+ ## License
53
+
54
+ todo-rs 基于 MIT 协议。查看 [ LICENSE] ( ./LICENSE ) 详情。
You can’t perform that action at this time.
0 commit comments