Skip to content

Commit 3328e86

Browse files
committed
0.0.0
1 parent 80f37f3 commit 3328e86

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[package]
22
name = "cliargs"
3-
version = "0.1.0"
3+
version = "0.0.0"
44
authors = ["Takayuki Sato <[email protected]>"]
55
edition = "2021"
6-
rust-version = "1.67.1"
6+
rust-version = "1.74.1"
77
description = "Parses command line arguments and prints the help."
88
documentation = "https://docs.rs/cliargs"
99
readme = "README.md"
1010
repository = "https://github.com/sttk/cliargs-rust"
1111
license = "MIT"
12-
keywords = ["cli", "arg", "argument", "command", "parse"]
12+
keywords = ["cli", "command", "line", "argument", "parse"]
1313
categories = ["command-line interface"]
1414

1515
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

README.md

+9-6
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,18 @@ This library provides the following functionalities:
88
- This library supports `--` option.
99
- This library doesn't support numeric short option.
1010
- 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)*
1515

1616
## Install
1717

1818
In `Cargo.toml`, write this crate as a dependency.
1919

2020
```toml
2121
[dependencies]
22-
cliargs = "0.1.0"
22+
cliargs = "0.0.0"
2323
```
2424

2525
## Usage
@@ -121,11 +121,14 @@ See the file LICENSE in this distribution for more details.
121121

122122

123123
[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
125125
[crateio-url]: https://crates.io/crates/cliargs
126126
[docrs-img]: https://img.shields.io/badge/doc.rs-cliargs-66c2a5?logo=docs.rs
127127
[docrs-url]: https://docs.rs/cliargs
128128
[ci-img]: https://github.com/sttk/cliargs-rust/actions/workflows/rust.yml/badge.svg?branch=main
129129
[ci-url]: https://github.com/sttk/cliargs-rust/actions
130130
[mit-img]: https://img.shields.io/badge/license-MIT-green.svg
131131
[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

Comments
 (0)