mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-05 04:47:14 +02:00
368 lines
9.7 KiB
Diff
368 lines
9.7 KiB
Diff
diff --git a/Cargo.lock b/Cargo.lock
|
|
index cada940..cfddfe0 100644
|
|
--- a/Cargo.lock
|
|
+++ b/Cargo.lock
|
|
@@ -109,9 +109,8 @@ checksum = "0f77d243921b0979fbbd728dd2d5162e68ac8252976797c24eb5b3a6af9090dc"
|
|
dependencies = [
|
|
"http",
|
|
"log",
|
|
- "rustls",
|
|
+ "native-tls",
|
|
"url",
|
|
- "webpki-roots",
|
|
]
|
|
|
|
[[package]]
|
|
@@ -301,6 +300,22 @@ dependencies = [
|
|
"windows-sys 0.45.0",
|
|
]
|
|
|
|
+[[package]]
|
|
+name = "core-foundation"
|
|
+version = "0.9.4"
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
+checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
|
+dependencies = [
|
|
+ "core-foundation-sys",
|
|
+ "libc",
|
|
+]
|
|
+
|
|
+[[package]]
|
|
+name = "core-foundation-sys"
|
|
+version = "0.8.6"
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
+checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
|
|
+
|
|
[[package]]
|
|
name = "cpufeatures"
|
|
version = "0.2.11"
|
|
@@ -492,6 +507,12 @@ version = "3.0.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "281e452d3bad4005426416cdba5ccfd4f5c1280e10099e21db27f7c1c28347fc"
|
|
|
|
+[[package]]
|
|
+name = "fastrand"
|
|
+version = "2.0.1"
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
+checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5"
|
|
+
|
|
[[package]]
|
|
name = "fd-lock"
|
|
version = "4.0.1"
|
|
@@ -518,6 +539,21 @@ version = "1.0.7"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
|
|
+[[package]]
|
|
+name = "foreign-types"
|
|
+version = "0.3.2"
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
+checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
|
|
+dependencies = [
|
|
+ "foreign-types-shared",
|
|
+]
|
|
+
|
|
+[[package]]
|
|
+name = "foreign-types-shared"
|
|
+version = "0.1.1"
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
+checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
|
|
+
|
|
[[package]]
|
|
name = "form_urlencoded"
|
|
version = "1.2.0"
|
|
@@ -723,6 +759,24 @@ dependencies = [
|
|
"autocfg",
|
|
]
|
|
|
|
+[[package]]
|
|
+name = "native-tls"
|
|
+version = "0.2.11"
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
+checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e"
|
|
+dependencies = [
|
|
+ "lazy_static",
|
|
+ "libc",
|
|
+ "log",
|
|
+ "openssl",
|
|
+ "openssl-probe",
|
|
+ "openssl-sys",
|
|
+ "schannel",
|
|
+ "security-framework",
|
|
+ "security-framework-sys",
|
|
+ "tempfile",
|
|
+]
|
|
+
|
|
[[package]]
|
|
name = "nibble_vec"
|
|
version = "0.1.0"
|
|
@@ -866,6 +920,50 @@ version = "11.1.3"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575"
|
|
|
|
+[[package]]
|
|
+name = "openssl"
|
|
+version = "0.10.63"
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
+checksum = "15c9d69dd87a29568d4d017cfe8ec518706046a05184e5aea92d0af890b803c8"
|
|
+dependencies = [
|
|
+ "bitflags 2.4.1",
|
|
+ "cfg-if",
|
|
+ "foreign-types",
|
|
+ "libc",
|
|
+ "once_cell",
|
|
+ "openssl-macros",
|
|
+ "openssl-sys",
|
|
+]
|
|
+
|
|
+[[package]]
|
|
+name = "openssl-macros"
|
|
+version = "0.1.1"
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
+checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
|
|
+dependencies = [
|
|
+ "proc-macro2",
|
|
+ "quote",
|
|
+ "syn",
|
|
+]
|
|
+
|
|
+[[package]]
|
|
+name = "openssl-probe"
|
|
+version = "0.1.5"
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
+checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
|
|
+
|
|
+[[package]]
|
|
+name = "openssl-sys"
|
|
+version = "0.9.99"
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
+checksum = "22e1bf214306098e4832460f797824c05d25aacdf896f64a985fb0fd992454ae"
|
|
+dependencies = [
|
|
+ "cc",
|
|
+ "libc",
|
|
+ "pkg-config",
|
|
+ "vcpkg",
|
|
+]
|
|
+
|
|
[[package]]
|
|
name = "option-ext"
|
|
version = "0.2.0"
|
|
@@ -878,6 +976,12 @@ version = "2.3.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94"
|
|
|
|
+[[package]]
|
|
+name = "pkg-config"
|
|
+version = "0.3.29"
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
+checksum = "2900ede94e305130c13ddd391e0ab7cbaeb783945ae07a279c268cb05109c6cb"
|
|
+
|
|
[[package]]
|
|
name = "plotters"
|
|
version = "0.3.5"
|
|
@@ -1012,6 +1116,15 @@ dependencies = [
|
|
"bitflags 1.3.2",
|
|
]
|
|
|
|
+[[package]]
|
|
+name = "redox_syscall"
|
|
+version = "0.4.1"
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
+checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
|
|
+dependencies = [
|
|
+ "bitflags 1.3.2",
|
|
+]
|
|
+
|
|
[[package]]
|
|
name = "redox_users"
|
|
version = "0.4.3"
|
|
@@ -1019,7 +1132,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
|
|
dependencies = [
|
|
"getrandom",
|
|
- "redox_syscall",
|
|
+ "redox_syscall 0.2.16",
|
|
"thiserror",
|
|
]
|
|
|
|
@@ -1052,20 +1165,6 @@ version = "0.8.2"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
|
|
|
|
-[[package]]
|
|
-name = "ring"
|
|
-version = "0.17.5"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "fb0205304757e5d899b9c2e448b867ffd03ae7f988002e47cd24954391394d0b"
|
|
-dependencies = [
|
|
- "cc",
|
|
- "getrandom",
|
|
- "libc",
|
|
- "spin",
|
|
- "untrusted",
|
|
- "windows-sys 0.48.0",
|
|
-]
|
|
-
|
|
[[package]]
|
|
name = "rust-embed"
|
|
version = "8.0.0"
|
|
@@ -1114,28 +1213,6 @@ dependencies = [
|
|
"windows-sys 0.48.0",
|
|
]
|
|
|
|
-[[package]]
|
|
-name = "rustls"
|
|
-version = "0.21.8"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "446e14c5cda4f3f30fe71863c34ec70f5ac79d6087097ad0bb433e1be5edf04c"
|
|
-dependencies = [
|
|
- "log",
|
|
- "ring",
|
|
- "rustls-webpki",
|
|
- "sct",
|
|
-]
|
|
-
|
|
-[[package]]
|
|
-name = "rustls-webpki"
|
|
-version = "0.101.7"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
|
|
-dependencies = [
|
|
- "ring",
|
|
- "untrusted",
|
|
-]
|
|
-
|
|
[[package]]
|
|
name = "rustyline"
|
|
version = "13.0.0"
|
|
@@ -1191,6 +1268,15 @@ dependencies = [
|
|
"winapi-util",
|
|
]
|
|
|
|
+[[package]]
|
|
+name = "schannel"
|
|
+version = "0.1.23"
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
+checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534"
|
|
+dependencies = [
|
|
+ "windows-sys 0.52.0",
|
|
+]
|
|
+
|
|
[[package]]
|
|
name = "scopeguard"
|
|
version = "1.2.0"
|
|
@@ -1198,13 +1284,26 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
|
|
[[package]]
|
|
-name = "sct"
|
|
-version = "0.7.1"
|
|
+name = "security-framework"
|
|
+version = "2.9.2"
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
+checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de"
|
|
+dependencies = [
|
|
+ "bitflags 1.3.2",
|
|
+ "core-foundation",
|
|
+ "core-foundation-sys",
|
|
+ "libc",
|
|
+ "security-framework-sys",
|
|
+]
|
|
+
|
|
+[[package]]
|
|
+name = "security-framework-sys"
|
|
+version = "2.9.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
|
|
+checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a"
|
|
dependencies = [
|
|
- "ring",
|
|
- "untrusted",
|
|
+ "core-foundation-sys",
|
|
+ "libc",
|
|
]
|
|
|
|
[[package]]
|
|
@@ -1279,12 +1378,6 @@ version = "1.11.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "942b4a808e05215192e39f4ab80813e599068285906cc91aa64f923db842bd5a"
|
|
|
|
-[[package]]
|
|
-name = "spin"
|
|
-version = "0.9.8"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
|
-
|
|
[[package]]
|
|
name = "strsim"
|
|
version = "0.10.0"
|
|
@@ -1302,6 +1395,19 @@ dependencies = [
|
|
"unicode-ident",
|
|
]
|
|
|
|
+[[package]]
|
|
+name = "tempfile"
|
|
+version = "3.8.1"
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
+checksum = "7ef1adac450ad7f4b3c28589471ade84f25f731a7a0fe30d71dfa9f60fd808e5"
|
|
+dependencies = [
|
|
+ "cfg-if",
|
|
+ "fastrand",
|
|
+ "redox_syscall 0.4.1",
|
|
+ "rustix",
|
|
+ "windows-sys 0.48.0",
|
|
+]
|
|
+
|
|
[[package]]
|
|
name = "termcolor"
|
|
version = "1.3.0"
|
|
@@ -1445,12 +1551,6 @@ version = "0.1.11"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85"
|
|
|
|
-[[package]]
|
|
-name = "untrusted"
|
|
-version = "0.9.0"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
-
|
|
[[package]]
|
|
name = "url"
|
|
version = "2.4.1"
|
|
@@ -1468,6 +1568,12 @@ version = "0.2.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
|
|
|
|
+[[package]]
|
|
+name = "vcpkg"
|
|
+version = "0.2.15"
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
+checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
|
+
|
|
[[package]]
|
|
name = "version_check"
|
|
version = "0.9.4"
|
|
@@ -1563,12 +1669,6 @@ dependencies = [
|
|
"wasm-bindgen",
|
|
]
|
|
|
|
-[[package]]
|
|
-name = "webpki-roots"
|
|
-version = "0.25.2"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "14247bb57be4f377dfb94c72830b8ce8fc6beac03cf4bf7b9732eadd414123fc"
|
|
-
|
|
[[package]]
|
|
name = "winapi"
|
|
version = "0.3.9"
|
|
diff --git a/numbat-exchange-rates/Cargo.toml b/numbat-exchange-rates/Cargo.toml
|
|
index c28a79a..1291b98 100644
|
|
--- a/numbat-exchange-rates/Cargo.toml
|
|
+++ b/numbat-exchange-rates/Cargo.toml
|
|
@@ -10,5 +10,5 @@ license = "MIT OR Apache-2.0"
|
|
rust-version = "1.70"
|
|
|
|
[dependencies]
|
|
-attohttpc = { version = "0.26.0", default-features = false, features = ["tls-rustls-webpki-roots"] }
|
|
+attohttpc = { version = "0.26.0", default-features = false, features = ["tls-native"] }
|
|
quick-xml = "0.31.0"
|