Skip to content

Commit 9946196

Browse files
committed
chore: uprgade gix to v0.48
1 parent 2caf814 commit 9946196

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ http-reqwest = ["gix/blocking-http-transport-reqwest-rust-tls"]
3535

3636

3737
[dependencies]
38-
gix = { version = "0.47.0", default-features = false, features = ["max-performance-safe", "blocking-network-client" ] }
38+
gix = { version = "0.48.0", default-features = false, features = ["max-performance-safe", "blocking-network-client" ] }
3939
serde = { version = "1", features = ["std", "derive"] }
4040
hex = { version = "0.4.3", features = ["serde"] }
4141
smartstring = { version = "1.0.1", features = ["serde"] }

tests/shared/mod.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,9 @@ pub fn baseline(mode: Step) -> Result<(), Box<dyn std::error::Error + Send + Syn
126126
versions.remove(&deleted_version.checksum);
127127
}
128128
}
129-
VersionDeleted(v) => versions.remove(&v.checksum),
129+
VersionDeleted(v) => {
130+
versions.remove(&v.checksum);
131+
}
130132
}
131133
}
132134
let elapsed = start.elapsed().as_secs_f32();

0 commit comments

Comments
 (0)