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"