matrix-rust-sdk/Makefile

14 lines
163 B
Makefile
Raw Normal View History

2019-11-24 21:43:36 +00:00
test:
cargo test --features encryption
2019-11-24 21:43:36 +00:00
coverage:
cargo tarpaulin --features encryption -v
2019-11-24 21:43:36 +00:00
clean:
cargo clean
format:
cargo fmt
.PHONY: clean test coverage