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
#!/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