[package]
edition = "2021"
name = "insmaller"
version = "0.6.2"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Config-driven installer: describe install steps in TOML and run them from one binary"
homepage = "https://github.com/walangstudio/insmaller"
readme = "README.md"
keywords = [
"installer",
"setup",
"cli",
"tui",
"toml",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/walangstudio/insmaller"
[[bin]]
name = "insmaller"
path = "src/main.rs"
[[test]]
name = "config_only_e2e"
path = "tests/config_only_e2e.rs"
[[test]]
name = "exe_sibling_e2e"
path = "tests/exe_sibling_e2e.rs"
[[test]]
name = "interactive_task_e2e"
path = "tests/interactive_task_e2e.rs"
[dependencies.anyhow]
version = "1"
[dependencies.crossterm]
version = "0.29"
[dependencies.dirs]
version = "5"
[dependencies.indicatif]
version = "0.17"
[dependencies.insmaller-core]
version = "0.6.2"
[dependencies.ratatui]
version = "0.30"
features = [
"crossterm_0_29",
"underline-color",
"all-widgets",
"macros",
"layout-cache",
]
default-features = false
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"process",
"fs",
"io-util",
"macros",
"time",
]
[dependencies.toml]
version = "0.8"
[dev-dependencies.tempfile]
version = "3"
[target."cfg(windows)".build-dependencies.winresource]
version = "0.1"