-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (23 loc) · 687 Bytes
/
Cargo.toml
File metadata and controls
27 lines (23 loc) · 687 Bytes
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
[package]
name = "ask-cli"
version = "0.3.1"
authors = ["Alex Saveau <saveau.alexandre@gmail.com>"]
edition = "2024"
description = "Ask CLI offers a simple way to ask a yes or no question."
repository = "https://github.com/SUPERCILEX/ask-cli"
keywords = ["cli", "answer", "ask", "question", "prompt"]
categories = ["command-line-utilities"]
license = "Apache-2.0"
[dev-dependencies]
supercilex-tests = { version = "0.4.21", default-features = false, features = ["api"] }
trycmd = "1.2.0"
[[bin]]
name = "ask"
path = "src/main.rs"
[profile.release]
lto = true
codegen-units = 1
strip = true
panic = "abort"
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(kani)'] }