ftw/Makefile

58 lines
920 B
Makefile
Raw Normal View History

2021-04-03 06:10:53 +00:00
all:
cargo build
2021-03-26 23:25:45 +00:00
audit:
cargo audit
bloat:
cargo bloat --release -n 10
cargo bloat --release --crates
cargo bloat --release --filter '^__' -n 10
build:
cargo build
build-release: clean
cargo build --release
check:
cargo check
cargo clippy --release -- -Dclippy::all -Wclippy::pedantic
clean:
cargo clean
2021-04-02 10:34:09 +00:00
coverage:
2021-07-08 13:18:40 +00:00
cargo tarpaulin --all-features --ignore-tests -o Html -t 300 -- --test-threads=1
2021-04-02 10:34:09 +00:00
${BROWSER} tarpaulin-report.html
2021-03-26 23:25:45 +00:00
doc: clean
cargo doc --no-deps --open -v
expand:
cargo expand --lib ftw_node_type
2021-03-26 23:25:45 +00:00
format:
cargo fmt --all -- --check
list-node-types:
godot-headless --gdnative-generate-json-api api.json
2021-06-04 10:11:29 +00:00
cat api.json | jq '.[] | .name' | tr -d '"' | tr -d "_" | sort | uniq
2021-03-26 23:25:45 +00:00
rm api.json
outdated:
cargo outdated -R
publish: clean format check test
cargo package
cargo publish
shell:
nix-shell -p openssl pkgconfig
test:
2021-06-01 00:12:14 +00:00
cargo test -- --test-threads=1
udeps:
cargo udeps