1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2025-01-28 17:48:25 +00:00

fix(windows): downgrade libz-ng-sys (#6489)

This commit is contained in:
David Knaack 2025-01-11 18:03:47 +01:00 committed by GitHub
parent 2c487cac31
commit 6f7c67b485
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 2 deletions

5
Cargo.lock generated
View File

@ -1953,9 +1953,9 @@ dependencies = [
[[package]]
name = "libz-ng-sys"
version = "1.1.20"
version = "1.1.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f0f7295a34685977acb2e8cc8b08ee4a8dffd6cf278eeccddbe1ed55ba815d5"
checksum = "4436751a01da56f1277f323c80d584ffad94a3d14aecd959dd0dff75aa73a438"
dependencies = [
"cmake",
"libc",
@ -3053,6 +3053,7 @@ dependencies = [
"guess_host_triple",
"home",
"indexmap 2.7.0",
"libz-ng-sys",
"log",
"mockall",
"nix",

View File

@ -91,6 +91,8 @@ yaml-rust2 = "0.9.0"
guess_host_triple = "0.1.4"
home = "0.5.11"
# Temporary workaround for https://github.com/rust-lang/libz-sys/issues/225
libz-ng-sys = { version = "<1.1.20", optional = true }
shell-words = "1.1.0"
[dependencies.schemars]