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
37
FEATURES ?= "lua51"
.PHONY: build
build:
cargo build --features ${FEATURES}
.PHONY: check
check:
cargo clippy --features ${FEATURES} -- --no-deps
cargo test --tests --features ${FEATURES} -- --show-output --test-threads=1
.PHONY: bench
bench:
cargo bench --features ${FEATURES}
.PHONY: fmt
fmt:
cargo fmt --all
.PHONY: clean
clean:
cargo clean
.PHONY: outdated
outdated:
cargo install --locked cargo-outdated
cargo outdated -R
.PHONY: doc
doc:
cargo doc --features ${FEATURES}