File fix-xtask-alias.patch of Package fish
From: Alexey Kolos <lioli7k@gmail.com> Date: Sun, 8 Feb 2026 23:36:25 +0300 Subject: [PATCH] fix: xtask alias Upstream: never cargo_vendor overrides contents of .cargo/config.toml entirely. This patch simply prepends contents of original config.toml to one generated by cargo_vendor. --- .cargo/config.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.cargo/config.toml b/.cargo/config.toml index 6257ed9..100af4e 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,3 +1,6 @@ +[alias] +xtask = "run --package xtask --" + [source.crates-io] replace-with = "vendored-sources"