2024-09-06 00:39:10 +01:00
|
|
|
[package]
|
|
|
|
name = "linutil_tui"
|
2024-09-20 01:09:53 +01:00
|
|
|
description = "Chris Titus Tech's Linux Toolbox - Linutil is a distro-agnostic toolbox designed to simplify everyday Linux tasks."
|
|
|
|
documentation = "https://christitustech.github.io/linutil"
|
|
|
|
readme = "../README.md"
|
2024-09-06 00:39:10 +01:00
|
|
|
edition = "2021"
|
|
|
|
license.workspace = true
|
2024-09-20 01:09:53 +01:00
|
|
|
repository = "https://github.com/ChrisTitusTech/linutil/tree/main/tui"
|
|
|
|
version.workspace = true
|
2024-09-21 01:12:26 +01:00
|
|
|
include = ["src/*.rs", "Cargo.toml", "build.rs", "cool_tips.txt"]
|
2024-09-20 01:09:53 +01:00
|
|
|
build = "build.rs"
|
2024-09-06 00:39:10 +01:00
|
|
|
|
2024-09-20 16:48:09 +01:00
|
|
|
[features]
|
|
|
|
default = ["tips"]
|
2024-09-21 01:12:26 +01:00
|
|
|
tips = ["rand"]
|
2024-09-20 16:48:09 +01:00
|
|
|
|
2024-09-06 00:39:10 +01:00
|
|
|
[dependencies]
|
|
|
|
clap = { version = "4.5.16", features = ["derive"] }
|
2024-09-11 23:21:50 +01:00
|
|
|
crossterm = "0.28.1"
|
2024-09-06 00:39:10 +01:00
|
|
|
ego-tree = { workspace = true }
|
|
|
|
oneshot = "0.1.8"
|
|
|
|
portable-pty = "0.8.1"
|
2024-09-11 23:21:50 +01:00
|
|
|
ratatui = "0.28.1"
|
2024-09-06 00:39:10 +01:00
|
|
|
tui-term = "0.1.12"
|
|
|
|
unicode-width = "0.1.13"
|
2024-09-21 01:12:26 +01:00
|
|
|
rand = { version = "0.8.5", optional = true }
|
2024-09-20 01:09:53 +01:00
|
|
|
linutil_core = { path = "../core", version = "24.9.19" }
|
2024-09-06 00:39:10 +01:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
chrono = "0.4.33"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "linutil"
|
2024-09-20 16:48:09 +01:00
|
|
|
path = "src/main.rs"
|