[package]
name = "ztl-cli"
version = "0.1.0"
edition = "2021"
authors = ["Paulo Campos <paulo.campos.dev@gmail.com>"]
description = "Interactive cli for running scripts from Package.json"
license = "MIT OR Apache-2.0"
repository = "https://github.com/paulocod/ztl-cli"
readme = "README.md"
keywords = ["cli", "node", "scripts", "interactive"]
categories = ["command-line-utilities"]
documentation = "https://docs.rs/ztl-cli"
exclude = [
".github/*",
"target/*",
"examples/*",
"tests/*",
"*.log",
"Cargo.lock"
]
[dependencies]
clap = { version = "4.4", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
dialoguer = "0.11"
thiserror = "1.0"
which = "5.0"
colored = "2.0"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
strip = "debuginfo"