vlog 0.1.1

Macros to do stdout / stderr logs based on verbosity level.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
version: '2'
services:
  lint-test:
    build:
      context: .
      dockerfile: Dockerfile-lint-test
    command:
      - bash
      - '-c'
      - 'rustfmt --write-mode=diff
           src/**.rs
         && cargo clippy --all
         && cargo test --all'