21 lines
675 B
TOML
21 lines
675 B
TOML
[package]
|
|
name = "xtask"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
# Standalone workspace so xtask compiles even when the parent rustelo workspace
|
|
# is mid-edit (the tool's whole purpose is fixing that state).
|
|
[workspace]
|
|
|
|
# xtask intentionally uses inline dep versions (not workspace = true) so it can
|
|
# build even when [workspace.dependencies] is mid-edit. It is the tool that
|
|
# manages that section, so it must not depend on it being well-formed.
|
|
|
|
[dependencies]
|
|
clap = { version = "4.6", features = ["derive"] }
|
|
toml = "1.1"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
anyhow = "1.0"
|
|
pathdiff = "0.2"
|
|
indexmap = { version = "2.7", features = ["serde"] }
|