1d403b7613
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
19 lines
436 B
TOML
19 lines
436 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" }
|
|
redox-pkg = { git = "https://gitlab.redox-os.org/redox-os/pkgutils.git", default-features = false, features = ["indicatif"] }
|
|
clap = { workspace = true }
|
|
termion = "4.0.6"
|