-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
52 lines (42 loc) · 1.18 KB
/
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
44
45
46
47
48
49
50
51
52
[package]
name = "structopt-flags"
version = "0.3.6"
authors = ["Luca Pizzamiglio <luca.pizzamiglio@gmail.com>"]
edition = "2018"
readme = "README.md"
license = "BSD-3-Clause"
categories = ["command-line-interface"]
keywords = ["clap","structopt","cli","flags"]
repository = "https://github.com/pizzamig/structopt-flags"
description = "Collection of reusable flags for StructOpt"
[package.metadata.docs.rs]
all-features = true
[badges]
travis-ci = { repository = "pizzamig/structopt-flags" }
maintenance = { status = "actively-developed" }
[features]
default = []
[dependencies]
structopt = "0.3"
log = "0.4"
simplelog = { version = "0.8", optional = true }
[build-dependencies]
skeptic = { git = 'https://github.com/andygauge/rust-skeptic'}
[dev-dependencies]
assert_cmd = "1"
escargot = "0.5"
skeptic = { git = 'https://github.com/andygauge/rust-skeptic'}
predicates = "1"
structopt = "0.3"
[[example]]
name = "verbose_simplelog"
required-features = ["simplelog"]
[[example]]
name = "quiet_verbose_simplelog"
required-features = ["simplelog"]
[[example]]
name = "logopt_simplelog"
required-features = ["simplelog"]
[[example]]
name = "verbose_no_default_simplelog"
required-features = ["simplelog"]