mirror of
https://github.com/matrix-org/matrix-rust-sdk.git
synced 2026-04-28 19:20:00 -04:00
14 lines
163 B
Makefile
14 lines
163 B
Makefile
test:
|
|
cargo test --features encryption
|
|
|
|
coverage:
|
|
cargo tarpaulin --features encryption -v
|
|
|
|
clean:
|
|
cargo clean
|
|
|
|
format:
|
|
cargo fmt
|
|
|
|
.PHONY: clean test coverage
|