Files
anvil/xtask/Cargo.toml
Eric Ratliff 6fe81769a3
Some checks failed
CI / Test (Linux) (push) Has been cancelled
CI / Test (Windows MSVC) (push) Has been cancelled
CI / Clippy (push) Has been cancelled
CI / Format (push) Has been cancelled
Cross-compile build works on Windows
2026-03-17 15:21:13 -05:00

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"