@@ -8,18 +8,18 @@ This library provides the following functionalities:
8
8
- This library supports ` -- ` option.
9
9
- This library doesn't support numeric short option.
10
10
- This library supports not ` -ofoo ` but ` -o=foo ` as an alternative to ` -o foo ` for short option.
11
- - Supports parsing with option configurations.
12
- - Supports parsing with an object which stores option values and has annotations of fields.
13
- - Is able to parse command line arguments including sub commands.
14
- - Generates help text from option configurations.
11
+ - Supports parsing with option configurations. * (To be added) *
12
+ - Supports parsing with an object which stores option values and has annotations of fields. * (To be added) *
13
+ - Is able to parse command line arguments including sub commands. * (To be added) *
14
+ - Generates help text from option configurations. * (To be added) *
15
15
16
16
## Install
17
17
18
18
In ` Cargo.toml ` , write this crate as a dependency.
19
19
20
20
``` toml
21
21
[dependencies ]
22
- cliargs = " 0.1 .0"
22
+ cliargs = " 0.0 .0"
23
23
```
24
24
25
25
## Usage
@@ -121,11 +121,14 @@ See the file LICENSE in this distribution for more details.
121
121
122
122
123
123
[ repo-url ] : https://github.com/sttk/cliargs-rust
124
- [ crateio-img ] : https://img.shields.io/badge/crate.io-ver.0.1 .0-fc8d62?logo=rust
124
+ [ crateio-img ] : https://img.shields.io/badge/crate.io-ver.0.0 .0-fc8d62?logo=rust
125
125
[ crateio-url ] : https://crates.io/crates/cliargs
126
126
[ docrs-img ] : https://img.shields.io/badge/doc.rs-cliargs-66c2a5?logo=docs.rs
127
127
[ docrs-url ] : https://docs.rs/cliargs
128
128
[ ci-img ] : https://github.com/sttk/cliargs-rust/actions/workflows/rust.yml/badge.svg?branch=main
129
129
[ ci-url ] : https://github.com/sttk/cliargs-rust/actions
130
130
[ mit-img ] : https://img.shields.io/badge/license-MIT-green.svg
131
131
[ mit-url ] : https://opensource.org/licenses/MIT
132
+
133
+ [ posix-args ] : https://www.gnu.org/software/libc/manual/html_node/Argument-Syntax.html#Argument-Syntax
134
+ [ gnu-args ] : https://www.gnu.org/prep/standards/html_node/Command_002dLine-Interfaces.html
0 commit comments