Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
default:
  just --list

bloaty-build:
  cargo build --profile bloaty
bloaty-csv:
  bloaty ./target/bloaty/ejs -d sections,symbols -n 0 --csv > meta.csv
bloaty-json:
  bloaty-metafile meta.csv --no-sections > meta.json
bloaty: bloaty-build bloaty-csv bloaty-json

clippy:
  cargo clippy --fix --allow-dirty --allow-staged --all-targets
fmt:
  cargo fmt
check: fmt clippy