From d13c0f474c1e3b2fc3854bdf60f10608b273c689 Mon Sep 17 00:00:00 2001 From: Pete Gadomski Date: Tue, 22 Oct 2024 13:14:58 -0600 Subject: [PATCH] cli: force duckdb to be bundled --- crates/cli/Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 066495e9..96d68e21 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -20,7 +20,9 @@ python = ["dep:pyo3", "pgstac"] [dependencies] axum.workspace = true clap = { workspace = true, features = ["derive"] } -duckdb = { workspace = true, optional = true } # We have this dependency only to allow us to bundle it +duckdb = { workspace = true, optional = true, features = [ + "bundled", +] } # 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