forked from console-rs/dialoguer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
60 lines (51 loc) · 1.33 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
53
54
55
56
57
58
59
60
[package]
name = "dialoguer"
description = "A command line prompting library."
version = "0.11.0"
edition = "2021"
rust-version = "1.63.0"
authors = [
"Armin Ronacher <[email protected]>",
"Pavan Kumar Sunkara <[email protected]>"
]
keywords = ["cli", "menu", "prompt"]
categories = ["command-line-interface"]
license = "MIT"
homepage = "https://github.com/console-rs/dialoguer"
repository = "https://github.com/console-rs/dialoguer"
documentation = "https://docs.rs/dialoguer"
readme = "README.md"
[features]
default = ["editor", "password"]
editor = ["tempfile"]
fuzzy-select = ["fuzzy-matcher"]
history = []
password = ["zeroize"]
completion = []
[dependencies]
console = "0.15.0"
tempfile = { version = "3", optional = true }
zeroize = { version = "1.1.1", optional = true }
fuzzy-matcher = { version = "0.3.7", optional = true }
shell-words = "1.1.0"
thiserror = "1.0.40"
[[example]]
name = "password"
required-features = ["password"]
[[example]]
name = "editor"
required-features = ["editor"]
[[example]]
name = "fuzzy_select"
required-features = ["fuzzy-select"]
[[example]]
name = "history"
required-features = ["history"]
[[example]]
name = "completion"
required-features = ["completion"]
[workspace.metadata.workspaces]
no_individual_tags = true
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]
all-features = true