dabddd5692
* chore(deps): bump tree-sitter-highlight from 0.26.8 to 0.26.9 Bumps [tree-sitter-highlight](https://github.com/tree-sitter/tree-sitter) from 0.26.8 to 0.26.9. - [Release notes](https://github.com/tree-sitter/tree-sitter/releases) - [Commits](https://github.com/tree-sitter/tree-sitter/compare/v0.26.8...v0.26.9) --- updated-dependencies: - dependency-name: tree-sitter-highlight dependency-version: 0.26.9 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * docs: refresh generated walkthrough * ci: allow Ratatui product name --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: titus <contact@christitus.com>
42 lines
1.5 KiB
TOML
42 lines
1.5 KiB
TOML
[package]
|
|
name = "linutil_tui"
|
|
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"
|
|
edition = "2021"
|
|
license.workspace = true
|
|
repository = "https://github.com/ChrisTitusTech/linutil/tree/main/tui"
|
|
version.workspace = true
|
|
include = [
|
|
"src/*.rs",
|
|
"Cargo.toml",
|
|
"cool_tips.txt",
|
|
"assets/ctt_logo.png",
|
|
"../man/linutil.1",
|
|
]
|
|
|
|
[[bin]]
|
|
name = "linutil"
|
|
path = "src/main.rs"
|
|
|
|
[features]
|
|
default = ["tips"]
|
|
tips = ["rand"]
|
|
|
|
[dependencies]
|
|
clap = { version = "4.6.1", features = ["derive"] }
|
|
image = { version = "0.25.10", default-features = false, features = ["ico", "png"] }
|
|
linutil_core = { version = "26.5.21", path = "../core" }
|
|
nix = { version = "0.31.3", features = ["user"] }
|
|
oneshot = { version = "0.2.1", features = ["std"], default-features = false }
|
|
portable-pty = "0.9.0"
|
|
rand = { version = "0.10.1", optional = true }
|
|
ratatui = { version = "0.30.0", features = ["crossterm"], default-features = false }
|
|
ratatui-image = { version = "11.0.2", default-features = false, features = ["crossterm", "image-defaults"] }
|
|
time = { version = "0.3.47", features = ["formatting", "local-offset", "macros"], default-features = false }
|
|
tree-sitter-bash = "0.25.1"
|
|
tree-sitter-highlight = "0.26.9"
|
|
tui-term = { version = "0.3.4", default-features = false }
|
|
unicode-width = { version = "0.2.0", default-features = false }
|
|
vt100-ctt = "0.17.1"
|