* Implement builder pattern for cargo command-line args, refactoring * Add an `xtask` subcommand to build a package (not its examples) * Add an `xtask` subcommand to bump the versions of packages
15 lines
323 B
TOML
15 lines
323 B
TOML
[package]
|
|
name = "xtask"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.79"
|
|
clap = { version = "4.5.0", features = ["derive"] }
|
|
env_logger = "0.11.1"
|
|
log = "0.4.20"
|
|
semver = "1.0.21"
|
|
strum = { version = "0.26.1", features = ["derive"] }
|
|
toml_edit = "0.22.5"
|