easy-logging 1.1.0

An easy way to get logging working in your CLI tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env bash
#
# Run all checks and tests
#

set -eu

echo "Running clippy checks..."

for profile in dev release; do
    cargo clippy --workspace --all-targets --all-features --no-deps --profile "$profile" -- -Dwarnings
done

echo -e "\nRunning tests..."
cargo test