aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: e91cde7e7d30d91309f37f906d2b7a947bafebe2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
build:  test format
	cargo build --workspace

run: build
	cargo run

doc: test format
	cargo doc --workspace --open

test: format
	cargo test --workspace

format:
	cargo fmt --all