vodozemac 0.10.0

A Rust implementation of Olm and Megolm
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# Justfile to make some common tasks in the vodozemac repo easier.

# List the available recipes.
default:
    just --list

# Create a coverage report using llvm-cov and print to stdout.
coverage:
    cargo llvm-cov nextest

# Create a coverage report for codecov using llvm-cov.
coverage-codecov:
    cargo llvm-cov nextest --codecov --output-path coverage.xml --profile ci