Skip to content

Commit 92a913a

Browse files
committed
Format
1 parent ec9e154 commit 92a913a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

xtask/src/main.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,7 @@ fn update_min_lock() -> Result {
9999
fn pin_msrv_versions(dry_run: bool, sh: &Shell, cargo: &str, lockfile: &str) -> Result<()> {
100100
cmd!(sh, "rm {lockfile}").run_if(dry_run)?;
101101

102-
let pin_versions: &[(&str, &str)] = &[
103-
("nalgebra", "0.32.6"),
104-
];
102+
let pin_versions: &[(&str, &str)] = &[("nalgebra", "0.32.6")];
105103
for (krate, version) in pin_versions {
106104
pin_version(dry_run, sh, cargo, krate, version)?;
107105
}

0 commit comments

Comments
 (0)