8 lines
181 B
Makefile
8 lines
181 B
Makefile
default:
|
|
just --list
|
|
build:
|
|
RUST_LOG=Debug cargo build
|
|
run:
|
|
RUST_LOG=Debug cargo run
|
|
test:
|
|
RUST_LOG=debug cargo test --benches --tests --all-features -- --nocapture
|