A library with the metrics types used by the Torrust Tracker packages.
Run coverage report:
cargo llvm-cov --package torrust-tracker-metrics Generate LCOV report with llvm-cov (for Visual Studio Code extension):
mkdir -p ./.coverage
cargo llvm-cov --package torrust-tracker-metrics --lcov --output-path=./.coverage/lcov.infoGenerate HTML report with llvm-cov:
mkdir -p ./.coverage
cargo llvm-cov --package torrust-tracker-metrics --html --output-dir ./.coverageWe copied some parts like units or function names and signatures from the crate metrics because we wanted to make it compatible as much as possible with it. In the future, we may consider using the metrics crate directly instead of maintaining our own version.
The project is licensed under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE.