From 39c68b41833cb7dd1fd308411dc6bd4acf7c86cc Mon Sep 17 00:00:00 2001 From: Pete Gadomski Date: Mon, 21 Oct 2024 06:32:24 -0600 Subject: [PATCH] fix(ci): vendor openssl? --- Cargo.toml | 1 + python/Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index a0e94aca..ba8e7b1d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -55,6 +55,7 @@ log = "0.4.22" mime = "0.3.17" mockito = "1.5" object_store = "0.11.0" +openssl = { version = "0.10.68", features = ["vendored"] } parquet = { version = "52.2", default-features = false } pgstac = { version = "0.2.1", path = "crates/pgstac" } pyo3 = "0.22.3" diff --git a/python/Cargo.toml b/python/Cargo.toml index 2d59109b..bd186f00 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -31,6 +31,7 @@ stac = { workspace = true, features = [ ] } stac-api = { workspace = true, features = ["client"] } stac-duckdb.workspace = true +openssl.workspace = true # only so we can vendor it when cross-compiling tokio = { workspace = true, features = ["rt"] } [package.metadata.cross.target.x86_64-unknown-linux-gnu]