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-10-08 22:14:16 +01:00
|
|
|
include = ["src/*.rs", "Cargo.toml", "build.rs", "cool_tips.txt", "../man/linutil.1"]
|
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]
|
2024-10-08 22:00:01 +01:00
|
|
|
clap = { version = "4.5.19", 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"
|
2024-10-03 20:20:50 +01:00
|
|
|
temp-dir = "0.1.14"
|
2024-09-30 22:14:26 +01:00
|
|
|
unicode-width = "0.2.0"
|
2024-09-21 01:12:26 +01:00
|
|
|
rand = { version = "0.8.5", optional = true }
|
2024-09-30 23:05:05 +01:00
|
|
|
linutil_core = { path = "../core", version = "24.9.28" }
|
2024-10-08 21:59:21 +01:00
|
|
|
tree-sitter-highlight = "0.24.2"
|
2024-09-22 16:56:30 +01:00
|
|
|
tree-sitter-bash = "0.23.1"
|
|
|
|
anstyle = "1.0.8"
|
|
|
|
ansi-to-tui = "6.0.0"
|
|
|
|
zips = "0.1.7"
|
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"
|