19 lines
313 B
TOML
19 lines
313 B
TOML
[package]
|
|
name = "xtask"
|
|
version = "0.1.1-alpha1"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[[bin]]
|
|
name = "xtask"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
# CLI argument parsing
|
|
clap = { version = "4.4", features = ["derive"] }
|
|
# Error handling
|
|
anyhow = "1.0"
|
|
# Colors
|
|
colored = "2.1"
|
|
# Command existence check
|
|
which = "5.0" |