Get everything compiling again.

This commit is contained in:
Matan Lurey 2025-06-09 22:14:54 -07:00
parent 10d3c64350
commit 4d7be692ce

View file

@ -100,7 +100,7 @@ impl ResolutionFetch {
// have featured-gated (optional) binary (gated behind feature).
crate_bin_files
.iter()
.map(|bin| bin.base_name)
.map(|bin| bin.base_name.clone())
.filter(|bin_name| {
user_specified_bins
.as_ref()
@ -200,7 +200,9 @@ impl ResolutionSource {
}
if let Some(bins) = &opts.bins {
cmd.args(bins.iter().map(|bin| ["--bin", bin.as_ref()]));
for bin in bins {
cmd.arg("--bin").arg(bin);
}
}
debug!("Running `{}`", format_cmd(&cmd));