[package]
edition = "2021"
name = "cli-tutor"
version = "0.1.2"
build = false
exclude = ["features/"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Interactive terminal app for learning Unix command-line tools"
readme = "README.md"
keywords = [
"cli",
"tui",
"terminal",
"learning",
"unix",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/ShadabGhazali/cli-tutor"
[lib]
name = "cli_tutor"
path = "src/lib.rs"
[[bin]]
name = "cli-tutor"
path = "src/main.rs"
[[test]]
name = "app_state_tests"
path = "tests/app_state_tests.rs"
[[test]]
name = "content_tests"
path = "tests/content_tests.rs"
[[test]]
name = "executor_tests"
path = "tests/executor_tests.rs"
[[test]]
name = "exercise_solutions_test"
path = "tests/exercise_solutions_test.rs"
[[test]]
name = "matcher_tests"
path = "tests/matcher_tests.rs"
[[test]]
name = "progress_tests"
path = "tests/progress_tests.rs"
[dependencies.anyhow]
version = "1"
[dependencies.crossterm]
version = "0.28"
[dependencies.ratatui]
version = "0.29"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "1"
[dependencies.toml]
version = "0.8"
[dev-dependencies]