investments 4.16.0

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

set -eux

(
    cd src/quotes/tinkoff/api
    git checkout main
    git pull
    rm -f ../tinkoff.public.invest.api.contract.v1.rs
)

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

cargo clean