[package]
edition = "2021"
name = "script-wizard"
version = "0.1.37"
authors = ["EnigmaCurry"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "script-wizard is a shell script (Bash) helper program, to delegate the responsibility of asking questions to the user, asking for confirmation, making selections, etc. The normalized response is printed to stdout for the script to consume."
documentation = "https://docs.rs/script-wizard"
readme = "README.md"
keywords = [
"bash",
"shell-script",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/EnigmaCurry/script-wizard"
[lib]
name = "script_wizard"
path = "src/lib.rs"
[[bin]]
name = "script-wizard"
path = "src/main.rs"
[dependencies.bendy]
version = "0.6.1"
features = ["serde"]
[dependencies.chrono]
version = "0.4.38"
[dependencies.clap]
version = "4.3.23"
features = [
"derive",
"env",
]
[dependencies.custom_error]
version = "1.9.2"
[dependencies.inquire]
version = "0.7.5"
features = [
"date",
"editor",
]
[dependencies.serde_json]
version = "1.0.117"
[dependencies.strum]
version = "0.26.2"
features = [
"derive",
"strum_macros",
]
[dependencies.strum_macros]
version = "0.26.4"