mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 20:25:28 +03:00
60 lines
1.7 KiB
Diff
60 lines
1.7 KiB
Diff
resolves a build failure that can't find openssl headers since the prior
|
|
openssl crate version are too old.
|
|
diff --git a/Cargo.lock b/Cargo.lock
|
|
index 36f38fb..678d575 100644
|
|
--- a/Cargo.lock
|
|
+++ b/Cargo.lock
|
|
@@ -1,5 +1,7 @@
|
|
# This file is automatically @generated by Cargo.
|
|
# It is not intended for manual editing.
|
|
+version = 3
|
|
+
|
|
[[package]]
|
|
name = "addr2line"
|
|
version = "0.14.1"
|
|
@@ -1067,18 +1069,30 @@ checksum = "13bd41f508810a131401606d54ac32a467c97172d74ba7662562ebba5ad07fa0"
|
|
|
|
[[package]]
|
|
name = "openssl"
|
|
-version = "0.10.32"
|
|
+version = "0.10.42"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "038d43985d1ddca7a9900630d8cd031b56e4794eecc2e9ea39dd17aa04399a70"
|
|
+checksum = "12fc0523e3bd51a692c8850d075d74dc062ccf251c0110668cbd921917118a13"
|
|
dependencies = [
|
|
"bitflags",
|
|
"cfg-if 1.0.0",
|
|
"foreign-types",
|
|
- "lazy_static",
|
|
"libc",
|
|
+ "once_cell",
|
|
+ "openssl-macros",
|
|
"openssl-sys",
|
|
]
|
|
|
|
+[[package]]
|
|
+name = "openssl-macros"
|
|
+version = "0.1.0"
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
+checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c"
|
|
+dependencies = [
|
|
+ "proc-macro2",
|
|
+ "quote",
|
|
+ "syn",
|
|
+]
|
|
+
|
|
[[package]]
|
|
name = "openssl-probe"
|
|
version = "0.1.2"
|
|
@@ -1087,9 +1101,9 @@ checksum = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de"
|
|
|
|
[[package]]
|
|
name = "openssl-sys"
|
|
-version = "0.9.60"
|
|
+version = "0.9.77"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "921fc71883267538946025deffb622905ecad223c28efbfdef9bb59a0175f3e6"
|
|
+checksum = "b03b84c3b2d099b81f0953422b4d4ad58761589d0229b5506356afca05a3670a"
|
|
dependencies = [
|
|
"autocfg",
|
|
"cc",
|