261a6c26b3
- recipe: use cargo install for proper binary installation - aur.rs: serde_derive for explicit derive path - main.rs: final noconfirm/force flow cleanup
28 lines
645 B
TOML
28 lines
645 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", default-features = false }
|
|
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"
|
|
tempfile = "3"
|
|
termion = "4.0.6"
|
|
|
|
[features]
|
|
default = ["full", "tui"]
|
|
full = ["cub-lib/full"]
|
|
tui = ["cub-tui"]
|