macroblog.rs @ eb5a9d2440c12f11343960f17abd96cbf7974867

fix: Add missing package to build

Because I moved to `rust:alpine` it is necessary to add `musl-dev` so
the build works.
 1diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
 2index 8cae0ac6163c17d90e604b08886035384d529660..e4face2e0022f8a09d390f832b3178fd33a3f9d0 100644
 3--- a/.gitlab-ci.yml
 4+++ b/.gitlab-ci.yml
 5@@ -6,7 +6,7 @@ test:
 6     image: rust:alpine
 7     stage: test
 8     script:
 9-        - cargo install cargo2junit
10+        - cargo install cargo2junit musl-dev
11         - cargo test -- -Z unstable-options --format json --report-time | cargo2junit > results.xml
12     only:
13         - master