mirror of
https://github.com/extrawurst/gitui.git
synced 2024-11-22 11:03:25 +03:00
16 lines
282 B
Makefile
16 lines
282 B
Makefile
|
|
debug:
|
|
GITUI_LOGGING=true cargo run --features=timing
|
|
|
|
test:
|
|
cargo test --workspace -- --test-threads=1
|
|
|
|
clippy:
|
|
cargo clean
|
|
cargo clippy --all-targets --all-features -- -D warnings
|
|
|
|
install:
|
|
cargo install --path "."
|
|
|
|
install-debug:
|
|
cargo install --features=timing --path "."
|