[package]
edition = "2021"
name = "ttyforce"
version = "0.2.0-beta4"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
default-run = "ttyforce"
description = "Town OS installer TUI"
homepage = "https://github.com/erikh/ttyforce"
readme = "README.md"
keywords = [
"tui",
"installer",
"linux",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/erikh/ttyforce"
[features]
dev-tools = []
[lib]
name = "ttyforce"
path = "src/lib.rs"
[[bin]]
name = "detect-hardware.ttyforce"
path = "src/bin/detect-hardware.rs"
required-features = ["dev-tools"]
[[bin]]
name = "ttyforce"
path = "src/main.rs"
[[example]]
name = "real-test"
path = "examples/real-test.rs"
[[example]]
name = "try-fixture"
path = "examples/try-fixture.rs"
[[test]]
name = "cli_tests"
path = "tests/cli_tests.rs"
[[test]]
name = "fixture_tests"
path = "tests/fixture_tests.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "mixed_disk_tests"
path = "tests/mixed_disk_tests.rs"
[[test]]
name = "playbook_tests"
path = "tests/playbook_tests.rs"
[[test]]
name = "scenario_tests"
path = "tests/scenario_tests.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.crossterm]
version = "0.28"
[dependencies.nix]
version = "0.29"
features = [
"net",
"ioctl",
"mount",
"reboot",
"socket",
"fs",
]
[dependencies.ratatui]
version = "0.29"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.toml]
version = "0.8"
[dependencies.zbus]
version = "5"
features = ["blocking"]
[dev-dependencies.pretty_assertions]
version = "1"