-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
44 lines (34 loc) · 829 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "argone"
version = "0.5.2"
authors = [
"just-do-halee <just.do.halee@gmail.com>"
]
homepage = "https://github.com/just-do-halee/argone"
repository = "https://github.com/just-do-halee/argone"
documentation = "https://docs.rs/argone"
description = "Most intuitive global cli maker. *(lazy_static + config-rs + clap)"
readme = "README.md"
include = [
"src/**/*",
"Cargo.toml",
"LICENSE_*",
"README.md"
]
keywords = [
"cli",
"argument",
"config",
"clap",
"lazy_static"
]
categories = [
"command-line-interface"
]
license = "MIT OR Apache-2.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
lazy_static = "1.4.0"
config = "0.11"
clap = { version = "3.2.5", features = ["derive"] }