easy-logging 0.2.0

An easy way to get logging working in your CLI tool
Documentation
#!/usr/bin/env bash
#
# Upgrades all dependencies to the latest versions
#

set -eux

command -v cargo-upgrade > /dev/null || cargo install cargo-edit
cargo upgrade --pinned allow --incompatible allow
cargo update

cargo clean