Eliminate use of ref keyword

This commit is contained in:
David Tolnay 2023-07-16 13:41:58 -07:00
parent 60d01a297f
commit d9808369cf
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -316,7 +316,7 @@ fn apply_args(cmd: &mut Command, args: &Expand, color: &Coloring, outfile: &Path
match cargo_metadata(args.manifest_path.as_deref()) {
Ok(cargo_metadata) => {
if let Some(root_package) = cargo_metadata.root_package() {
if let Some(ref default_run) = root_package.default_run {
if let Some(default_run) = &root_package.default_run {
line.arg("--bin");
line.arg(default_run);
}