feat: add tracing

This commit is contained in:
Sandro Eiler 2024-02-04 13:48:31 +01:00
parent 653502c470
commit 93140e7d22
8 changed files with 431 additions and 174 deletions

View file

@ -33,9 +33,21 @@ Current contribution workflow is:
## Maintainance
**Versioning:**
TODO; explain versioning
**Check for unused dependencies:**
Requirement: Needs `cargo install cargo-udeps --locked`
```sh
cargo +nightly udeps --all-targets
```
**Test with tracing output:**
Requirement: Needs `cargo install bunyan`
```sh
TEST_LOG=true cargo test | bunyan
```