investments 6.1.0

Helps you with managing your investments
Documentation
#!/usr/bin/env bash
#
# Checks code with clippy linter
#

set -eu

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