run-stack 0.4.5

One command to boot a full local stack in Docker: API, Vite apps, Expo mobile, desktop renderer, database, mail and a status dashboard.
Documentation
[package]
name = "run-stack"
version = "0.4.5"
edition = "2021"
rust-version = "1.74"
description = "One command to boot a full local stack in Docker: API, Vite apps, Expo mobile, desktop renderer, database, mail and a status dashboard."
license = "MIT"
readme = "README.md"
repository = "https://github.com/dev-ahmed/run"
keywords = ["docker", "docker-compose", "local-development", "monorepo", "expo"]
categories = ["command-line-utilities", "development-tools"]

# Two names for one program: src/bin/rst.rs is the short one, and both call
# into the library so nothing is compiled twice from the same file.
[lib]
name = "run_stack"
path = "src/lib.rs"

[[bin]]
name = "run-stack"
path = "src/main.rs"

[dependencies]
# Commands and flags from structs, with generated help and completions.
clap = { version = "4", features = ["derive"] }
clap_complete = "4"
# `?` everywhere plus .context(); no custom error enums for a CLI.
anyhow = "1"
# run.config.json, in both the section shape and the older flat one.
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1", features = ["preserve_order"] }
# The init prompts: multi-select, pick-from-list, free text.
inquire = "0.7"
include_dir = "0.7.4"
toml = "0.8"

[dev-dependencies]
# Black-box tests that run the built binary, the way the shell tests do.
assert_cmd = "2"
predicates = "3"
tempfile = "3"

[profile.release]
# A CLI that starts fast and ships small.
opt-level = "z"
lto = true
codegen-units = 1
strip = true
panic = "abort"