Skip to content

Commit 5e4ff20

Browse files
committed
Update version pins
1 parent 161f4c3 commit 5e4ff20

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

xtask/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ publish = false
77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88

99
[dependencies]
10-
xshell = "0.2.5"
10+
xshell = "0.2.7"

xtask/src/main.rs

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
use std::env;
44

5-
use xshell::{cmd, Shell};
5+
use xshell::{Shell, cmd};
66

77
fn main() {
88
if let Err(e) = try_main() {
@@ -99,11 +99,10 @@ 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: &[(String, &str)] = &[
103-
("backon".to_owned(), "1.5.2"),
104-
("idna_adapter".to_owned(), "1.2.0"),
105-
("litemap".to_owned(), "0.7.5"),
106-
("home".to_owned(), "0.5.11"),
102+
let pin_versions: &[(&str, &str)] = &[
103+
("backon", "1.5.2"),
104+
("idna_adapter", "1.2.0"),
105+
("litemap", "0.7.5"),
107106
];
108107
for (krate, version) in pin_versions {
109108
pin_version(dry_run, sh, cargo, krate, version)?;

0 commit comments

Comments
 (0)