From 85b1b6cd883dfa417de4fb9941d5d1ca013db551 Mon Sep 17 00:00:00 2001 From: Andrew Morgan Date: Tue, 16 Apr 2024 15:35:49 +0100 Subject: [PATCH] Attempt to not statically link --- .github/workflows/pypi.yaml | 2 ++ Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pypi.yaml b/.github/workflows/pypi.yaml index aa6a77b..dcc748a 100644 --- a/.github/workflows/pypi.yaml +++ b/.github/workflows/pypi.yaml @@ -83,6 +83,8 @@ jobs: with: python-version: '3.10' architecture: ${{ matrix.platform.target }} + - name: Install OpenSSL + run: vcpkg install openssl:x64-windows-static-md - name: Build wheels uses: PyO3/maturin-action@v1 with: diff --git a/Cargo.toml b/Cargo.toml index 33b6795..4619d83 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ required-features = ["clap"] [dependencies] indicatif = "0.17.6" -openssl = { version = "0.10.60", features = ["vendored"] } +openssl = { version = "0.10.60" } postgres = "0.19.7" postgres-openssl = "0.5.0" rand = "0.8.5"