-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjustfile
More file actions
36 lines (24 loc) · 631 Bytes
/
justfile
File metadata and controls
36 lines (24 loc) · 631 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
default:
@just --list
check: check-format check-clippy test
fix: fix-format fix-clippy
test:
cargo test --workspace --all-features
check-format:
cargo fmt --all -- --check
fix-format:
cargo fmt --all
check-clippy:
cargo clippy --all-targets -- -D warnings
fix-clippy:
cargo clippy --all-targets --fix --allow-dirty --allow-staged
build:
cargo build --release
build-maxperf:
cargo build --profile maxperf --features jemalloc
clean:
cargo clean
watch-test:
cargo watch -x test
watch-check:
cargo watch -x "fmt --all -- --check" -x "clippy --all-targets -- -D warnings" -x test