2020-03-22 04:45:42 +03:00
|
|
|
|
2020-03-28 22:47:29 +03:00
|
|
|
.PHONY: test
|
|
|
|
|
2020-03-22 04:45:42 +03:00
|
|
|
debug:
|
|
|
|
GITUI_LOGGING=true cargo run --features=timing
|
|
|
|
|
2020-03-26 12:08:28 +03:00
|
|
|
test:
|
2020-03-28 11:39:16 +03:00
|
|
|
cargo test --workspace
|
2020-03-26 12:08:28 +03:00
|
|
|
|
2020-03-27 02:41:59 +03:00
|
|
|
clippy:
|
|
|
|
cargo clean
|
2020-03-27 02:50:02 +03:00
|
|
|
cargo clippy --all-features
|
2020-03-27 02:41:59 +03:00
|
|
|
|
2020-03-27 03:11:15 +03:00
|
|
|
clippy-pedantic:
|
|
|
|
cargo clean
|
|
|
|
cargo clippy --all-features -- -W clippy::pedantic
|
|
|
|
|
2020-03-22 04:45:42 +03:00
|
|
|
install:
|
|
|
|
cargo install --path "."
|
|
|
|
|
|
|
|
install-debug:
|
|
|
|
cargo install --features=timing --path "."
|