async-duckdb 0.2.0

A library for working with duckdb asynchronously
Documentation
#!/usr/bin/env just --justfile
# 'justfile'
# just-repo: https://github.com/casey/just
# just-docs: https://just.systems/man/en/

@_default:
    just --list --unsorted

dev: fmt test

# Format
fmt:
    cargo fmt

# Format check
fmtc:
    cargo fmt -- --check

test:
    cargo test

build:
    cargo build

lint:
    cargo clippy --all-targets --all-features -- -D warnings

lintfix:
    cargo clippy --all-targets --all-features --fix -- -D warnings

ci: fmtc test lint