This updates the `template` subcommand to be `generate`. The `template` usage will continue to work as an alias to `generate`. A new `switch` command is added that will manage both `rpm-ostree rebase` and `rpm-ostree upgrade` and is fully replacing the respective subcommands as a breaking change. The new `switch` command is under the feature flag `switch` and will currently only build for the `main` branch builds until it is moved as a default feature (`v0.9.0`). Closes #159
37 lines
774 B
TOML
37 lines
774 B
TOML
[package]
|
|
name = "blue-build-utils"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
description.workspace = true
|
|
repository.workspace = true
|
|
license.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
atty = "0.2"
|
|
directories = "5"
|
|
process_control = { version = "4", features = ["crossbeam-channel"] }
|
|
syntect = "5"
|
|
which = "6"
|
|
|
|
anyhow.workspace = true
|
|
chrono.workspace = true
|
|
colored.workspace = true
|
|
env_logger.workspace = true
|
|
format_serde_error.workspace = true
|
|
log.workspace = true
|
|
serde.workspace = true
|
|
serde_yaml.workspace = true
|
|
serde_json.workspace = true
|
|
|
|
[dependencies.clap]
|
|
workspace = true
|
|
features = ["derive"]
|
|
|
|
[build-dependencies]
|
|
syntect = "5.2.0"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|