default:
just --list
# Development action
dev: stub
uv run maturin dev
stub:
cargo run -Fpython-bindings --bin stub_gen
doc:
cargo doc --no-deps --open
watchdoc:
cargo watch -- cargo doc --no-deps
# Default test command with your preferred features
t:
clear
cargo test --no-default-features --features "test_features" --all-targets
cargo test --no-default-features --features "test_features" --doc
test: t