aboutsummaryrefslogtreecommitdiff
path: root/justfile
blob: 1ffc8669eefbbf3fc9f06a354ce4320718e77fd4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
default:
  @just --list

fmt:
  cargo fmt

check:
  cargo check --all-features

checkf:
  @just fmt
  @just check

checkfc:
  @just checkf
  cargo clippy

run:
  @just checkfc
  cargo run