aboutsummaryrefslogtreecommitdiff
path: root/cargo.just
blob: 1a8ca66d4b8445494cf3f2fa8e80659593f5579a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
fmt:
  cargo fmt

check:
  cargo check --all-features

clippy:
  cargo clippy --all-features

checkf:
  @just fmt
  @just check

checkfc:
  @just checkf
  cargo clippy

run +arguments="":
  @just checkfc
  cargo run -- {{arguments}}