Files
RedBear-OS/local/recipes/system/cub/source/cub-cli/Cargo.toml
T
2026-05-07 20:57:51 +01:00

26 lines
572 B
TOML

[package]
name = "cub-cli"
default-run = "cub"
description = "Red Bear OS Package Builder CLI"
version.workspace = true
edition.workspace = true
license.workspace = true
[[bin]]
name = "cub"
path = "src/main.rs"
[dependencies]
cub-lib = { path = "../cub-lib" }
cub-tui = { path = "../cub-tui", optional = true }
redox-pkg = { git = "https://gitlab.redox-os.org/redox-os/pkgutils.git", default-features = false, features = ["indicatif"] }
clap = { workspace = true }
pkgar = "0.2.2"
pkgar-core = "0.2.2"
termion = "4.0.6"
[features]
default = ["tui"]
tui = ["cub-tui"]