mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-26 12:45:20 +03:00
61 lines
1.5 KiB
Diff
61 lines
1.5 KiB
Diff
diff --git a/Cargo.lock b/Cargo.lock
|
|
index 4bbd494..3226913 100644
|
|
--- a/Cargo.lock
|
|
+++ b/Cargo.lock
|
|
@@ -147,6 +147,15 @@ dependencies = [
|
|
"inout",
|
|
]
|
|
|
|
+[[package]]
|
|
+name = "cmake"
|
|
+version = "0.1.50"
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
+checksum = "a31c789563b815f77f4250caee12365734369f942439b7defd71e18a48197130"
|
|
+dependencies = [
|
|
+ "cc",
|
|
+]
|
|
+
|
|
[[package]]
|
|
name = "constant_time_eq"
|
|
version = "0.1.5"
|
|
@@ -374,6 +383,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e"
|
|
dependencies = [
|
|
"crc32fast",
|
|
+ "libz-ng-sys",
|
|
"miniz_oxide",
|
|
]
|
|
|
|
@@ -529,6 +539,16 @@ dependencies = [
|
|
"pkg-config",
|
|
]
|
|
|
|
+[[package]]
|
|
+name = "libz-ng-sys"
|
|
+version = "1.1.9"
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
+checksum = "2468756f34903b582fe7154dc1ffdebd89d0562c4a43b53c621bb0f1b1043ccb"
|
|
+dependencies = [
|
|
+ "cmake",
|
|
+ "libc",
|
|
+]
|
|
+
|
|
[[package]]
|
|
name = "libz-sys"
|
|
version = "1.1.12"
|
|
diff --git a/Cargo.toml b/Cargo.toml
|
|
index 4f9801c..5a92d53 100644
|
|
--- a/Cargo.toml
|
|
+++ b/Cargo.toml
|
|
@@ -30,9 +30,9 @@ crossterm = "0.26.1"
|
|
serde_yaml = "0.9.25"
|
|
zip = "0.6.6"
|
|
tar = "0.4.39"
|
|
-flate2 = "1.0.26"
|
|
+flate2 = {version = "1.0.26", default-features = false, features = ["zlib-ng"]}
|
|
lzma-rs = "0.3.0"
|
|
-zstd = "0.12.4"
|
|
+zstd = {version = "0.12.4", default-features = false, features = ["pkg-config"]}
|
|
unicode-width = "0.1.10"
|
|
git2 = {version = "0.18.0", default-features = false }
|
|
|