Skip to content

Commit

Permalink
fix(cli): bundle openssl
Browse files Browse the repository at this point in the history
  • Loading branch information
gadomski committed Oct 21, 2024
1 parent ffee57c commit 49ce65e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ axum.workspace = true
clap = { workspace = true, features = ["derive"] }
duckdb = { workspace = true, optional = true } # We have this dependency only to allow us to bundle it
object_store.workspace = true
openssl.workspace = true # same as duckdb, these openssls are just for bundling
openssl-src.workspace = true
pgstac = { workspace = true, optional = true }
pyo3 = { workspace = true, optional = true }
reqwest.workspace = true
Expand Down
2 changes: 2 additions & 0 deletions crates/cli/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ pub type Result<T> = std::result::Result<T, Error>;

#[cfg(feature = "duckdb")]
use duckdb as _;
use openssl as _;
use openssl_src as _;
use tracing_subscriber as _;

#[cfg(test)]
Expand Down

0 comments on commit 49ce65e

Please sign in to comment.