mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-17 05:05:14 +03:00
36 lines
1.1 KiB
Diff
36 lines
1.1 KiB
Diff
diff --git a/Cargo.lock b/Cargo.lock
|
|
index 13ebe60..213aeff 100644
|
|
--- a/Cargo.lock
|
|
+++ b/Cargo.lock
|
|
@@ -2065,6 +2065,12 @@ dependencies = [
|
|
"zeroize",
|
|
]
|
|
|
|
+[[package]]
|
|
+name = "pkg-config"
|
|
+version = "0.3.26"
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
+checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160"
|
|
+
|
|
[[package]]
|
|
name = "plotters"
|
|
version = "0.3.1"
|
|
@@ -4144,4 +4150,5 @@ checksum = "9fd07cbbc53846d9145dbffdf6dd09a7a0aa52be46741825f5c97bdd4f73f12b"
|
|
dependencies = [
|
|
"cc",
|
|
"libc",
|
|
+ "pkg-config",
|
|
]
|
|
diff --git a/crates/cache/Cargo.toml b/crates/cache/Cargo.toml
|
|
index 3ebd15b..2926536 100644
|
|
--- a/crates/cache/Cargo.toml
|
|
+++ b/crates/cache/Cargo.toml
|
|
@@ -18,7 +18,7 @@ log = { workspace = true }
|
|
serde = { version = "1.0.94", features = ["derive"] }
|
|
sha2 = "0.10.2"
|
|
toml = "0.5.5"
|
|
-zstd = { version = "0.11.1", default-features = false }
|
|
+zstd = { version = "0.11.1", default-features = false, features = ["pkg-config"] }
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies.windows-sys]
|
|
workspace = true
|