matrix-rust-sdk/Makefile

18 lines
280 B
Makefile
Raw Normal View History

all: build
build:
cargo build --features 'encryption sqlite-cryptostore'
2019-11-24 21:43:36 +00:00
test:
2020-03-18 08:41:49 +00:00
cargo test --features 'encryption sqlite-cryptostore'
2019-11-24 21:43:36 +00:00
coverage:
2020-03-18 08:41:49 +00:00
cargo tarpaulin --features 'encryption sqlite-cryptostore' -v
2019-11-24 21:43:36 +00:00
clean:
cargo clean
format:
cargo fmt
.PHONY: clean test coverage