duckdb-queryscript 0.7.4

Ergonomic wrapper for DuckDB
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
.EXPORT_ALL_VARIABLES:

# In order to use buildtime_bindgen
# you need to build duckdb locally and export the envs
LD_LIBRARY_PATH = /Users/wangfenjin/duckdb:$LD_LIBRARY_PATH
DUCKDB_LIB_DIR = /Users/wangfenjin/duckdb
DUCKDB_INCLUDE_DIR = /Users/wangfenjin/duckdb

all:
	cargo test --features buildtime_bindgen --features modern-full -- --nocapture
	cargo clippy --all-targets --workspace --features buildtime_bindgen --features modern-full -- -D warnings -A clippy::redundant-closure

test:
	cargo test --features bundled --features modern-full -- --nocapture