fix(ci): vendored OpenSSL for cross-compilation

cross 的 Docker 镜像缺少 libssl-dev,改用 native-tls-vendored 静态链接 OpenSSL
This commit is contained in:
fawney19
2026-02-07 12:48:34 +08:00
parent 6d95822e19
commit 86dbbe83c2

View File

@@ -9,7 +9,7 @@ tokio = { version = "1", features = ["full"] }
hyper = { version = "1", features = ["http1", "server"] }
hyper-util = { version = "0.1", features = ["tokio", "http1", "server"] }
http-body-util = "0.1"
reqwest = { version = "0.12", features = ["json"] }
reqwest = { version = "0.12", features = ["json", "native-tls-vendored"] }
hmac = "0.12"
sha2 = "0.10"
subtle = "2"