Make duck db optional, add beginning of ingey agent
All checks were successful
test / test (push) Successful in 29m57s

This commit is contained in:
2026-04-01 21:16:00 +10:30
parent 4da6d64988
commit 8e6a9f5e19
6 changed files with 341 additions and 72 deletions

View File

@@ -31,7 +31,11 @@ tokio-util = { version = "0.7.13", features = ["compat"] }
async-trait = "0.1.83"
testcontainers = "0.23.1"
wasmtime = "29.0.1"
duckdb = { version = "1.2.0", features = ["bundled"] }
duckdb = { version = "1.2.0", features = ["bundled"], optional = true }
axum = "0.8.8"
[features]
duckdb = ["dep:duckdb"]
# More info on targets: https://doc.rust-lang.org/cargo/reference/cargo-targets.html#configuring-a-target
[lib]