investments 3.2.0

Helps you with managing your investments
Documentation
#!/usr/bin/env bash
#
# Upgrades all dependencies to the latest versions
#

set -eu

command -v cargo-upgrade > /dev/null || cargo install cargo-edit
cargo upgrade

# The version spec must be in sync with https://github.com/diesel-rs/diesel/blob/master/diesel/Cargo.toml
sed -ri '/^libsqlite3-sys =/ s/version\s*=\s*"[^"]+"/version = ">=0.8.0, <0.23.0"/' Cargo.toml

# Pin rust_decimal version since it's not stable enough yet
sed -ri 's/^(rust_decimal(:?_macros)? = ")/\1~/' Cargo.toml

cargo update