matrix-rust-sdk/Makefile

18 lines
280 B
Makefile

all: build
build:
cargo build --features 'encryption sqlite-cryptostore'
test:
cargo test --features 'encryption sqlite-cryptostore'
coverage:
cargo tarpaulin --features 'encryption sqlite-cryptostore' -v
clean:
cargo clean
format:
cargo fmt
.PHONY: clean test coverage