mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-05 05:09:17 +00:00
4c3cc75997
Bumps [clap](https://github.com/clap-rs/clap) from 4.5.19 to 4.5.20. - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.19...clap_complete-v4.5.20) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
37 lines
1015 B
TOML
37 lines
1015 B
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", "../man/linutil.1"]
|
|
|
|
[features]
|
|
default = ["tips"]
|
|
tips = ["rand"]
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5.20", features = ["derive"] }
|
|
crossterm = "0.28.1"
|
|
ego-tree = { workspace = true }
|
|
oneshot = "0.1.8"
|
|
portable-pty = "0.8.1"
|
|
ratatui = "0.29.0"
|
|
tui-term = "0.2.0"
|
|
temp-dir = "0.1.14"
|
|
unicode-width = "0.2.0"
|
|
rand = { version = "0.8.5", optional = true }
|
|
linutil_core = { path = "../core", version = "24.9.28" }
|
|
tree-sitter-highlight = "0.24.3"
|
|
tree-sitter-bash = "0.23.1"
|
|
anstyle = "1.0.8"
|
|
ansi-to-tui = "7.0.0"
|
|
zips = "0.1.7"
|
|
|
|
[[bin]]
|
|
name = "linutil"
|
|
path = "src/main.rs"
|