From 6831dcd3b52012dd947b948bee04428517e68b27 Mon Sep 17 00:00:00 2001 From: Naz Quadri Date: Wed, 19 Jun 2024 14:34:01 -0400 Subject: [PATCH] Generalise tests --- .github/workflows/dev.yml | 2 ++ Cargo.lock | 11 ----------- Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 12 deletions(-) diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index f358d67..4cf401c 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -130,6 +130,8 @@ jobs: manylinux: auto args: --release --locked -j $(nproc) -i python${{ matrix.python-versions }} --out dist sccache: 'true' + env: + OPENSSL_DIR: /etc/pki/tls - name: Integration test artifact run: | diff --git a/Cargo.lock b/Cargo.lock index 29ecfe4..c54e1ac 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -933,15 +933,6 @@ version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" -[[package]] -name = "openssl-src" -version = "300.1.6+3.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "439fac53e092cd7442a3660c85dde4643ab3b5bd39040912388dcdabf6b88085" -dependencies = [ - "cc", -] - [[package]] name = "openssl-sys" version = "0.9.102" @@ -950,7 +941,6 @@ checksum = "c597637d56fbc83893a35eb0dd04b2b8e7a50c91e64e9493e398b5df4fb45fa2" dependencies = [ "cc", "libc", - "openssl-src", "pkg-config", "vcpkg", ] @@ -1072,7 +1062,6 @@ dependencies = [ "bincode", "chrono", "criterion", - "openssl", "pyo3", "reqwest", "serde", diff --git a/Cargo.toml b/Cargo.toml index 0b4aa0c..ca40b62 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ chrono = { version = "0.4.38", features = ["serde"] } bincode = "1.3.3" reqwest = { version = "0.12.4", features = ["json"] } tokio = { version = "1.38.0", features = ["full"] } -openssl = { version = "0.10.64", features = ["vendored"] } +#openssl = { version = "0.10.64", features = ["vendored"] } [package.metadata.cargo-llvm-cov] # Ignore directories and files that are not part of the Rust source code