-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (29 loc) · 935 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
[package]
name = "asking"
version = "0.0.3"
authors = ["Raimundo Saona <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/saona-raimundo/asking"
documentation = "https://docs.rs/asking"
homepage = "https://crates.io/crates/asking"
description = """
Build async prompts.
"""
keywords = ["ask", "cli", "input", "prompt", "question"]
categories = ["command-line-interface", "command-line-utilities", "encoding", "rust-patterns", "value-formatting"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
eyre = "0.6.5"
async-std = "1.9.0"
chrono = "0.4.19"
thiserror = "1.0.26"
[dev-dependencies]
doc-comment = "0.3.3"
rand = "0.8.4"
async-std = { version = "1.9.0", features = ["attributes", "unstable"] }
async-dup = "1.2.2"
assert_cmd = "2.0.0"