forked from pacak/bpaf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
51 lines (39 loc) · 1.17 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
[package]
name = "bpaf"
version = "0.5.7"
edition = "2021"
categories = ["command-line-interface"]
description = "A simple Command Line Argument Parser with parser combinators"
keywords = ["args", "arguments", "cli", "parser", "parse"]
authors = [ "Michael Baykov <[email protected]>" ]
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/pacak/bpaf"
rust-version = "1.56"
exclude = [".github/workflows"]
[dependencies]
bpaf_derive = { path = "./bpaf_derive", version = "0.2.2", optional = true }
[dev-dependencies]
bpaf = { path = ".", features = ["derive", "extradocs", "autocomplete"] }
[package.metadata.docs.rs]
features = ["derive", "extradocs", "autocomplete"]
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples=examples"]
[features]
derive = ["bpaf_derive"]
extradocs = []
batteries = []
autocomplete = []
[[test]]
name = "completion"
required-features = ["autocomplete"]
[[test]]
name = "derive"
required-features = ["derive"]
[[test]]
name = "batteries"
required-features = ["batteries"]
[[example]]
name = "csample"
required-features = ["autocomplete"]
[workspace]
members = [".", "./bpaf_derive", "./bpaf_cauwugo", "docs"]