investments 4.9.0

Helps you with managing your investments
Documentation
[package]
name = "investments"
version = "4.9.0"
description = "Helps you with managing your investments"
keywords = ["finance", "investment", "stocks", "trading", "taxes"]
categories = ["command-line-utilities"]

authors = ["Dmitry Konishchev <konishchev@gmail.com>"]
homepage = "https://github.com/KonishchevDmitry/investments"
repository = "https://github.com/KonishchevDmitry/investments"
documentation = "https://github.com/KonishchevDmitry/investments"
license = "GPL-3.0+"
readme = "README.md"

edition = "2021"
exclude = ["/testdata"]

[[bin]]
name = "investments"
path = "src/bin/investments/mod.rs"

# Used by regression tests
[[example]]
name = "tax-statement-parser"
path = "examples/tax_statement_parser.rs"

[dependencies]
ansi_term = "0.12.1"
bitflags = "1.3.2"
calamine = "0.18.0"
chrono = "0.4.19"
chrono-tz = "0.6.3"
cast = "0.3.0"
clap = "3.2.14"
clap_complete = "3.2.3"
const_format = "0.2.26"
csv = "1.1.6"
cusip = "0.2.1"
easy-logging = "0.1.2"
encoding_rs = "0.8.31"
governor = "0.4.2"
indoc = "1.0.6"
isin = "0.1.11"
itertools = "0.10.3"
lazy_static = "1.4.0"
log = "0.4.17"
maplit = "1.0.2"
matches = "0.1.9"
num-integer = "0.1.45"
num-traits = "0.2.15"
platforms = "3.0.1"
prettytable-rs = "0.9.0"
prometheus = "0.13.1"
quick-xml = { version = "0.25.0", features = [ "serialize" ] }
rayon = "1.5.3"
regex = "1.6.0"
reqwest = { version = "0.11.11", features = ["blocking", "json"] }
separator = "0.4.1"
serde = { version = "1.0.140", features = ["derive"] }
serde_json = "1.0.82"
serde_yaml = "0.8.26"
serde-xml-rs = "0.6.0"
shellexpand = "2.1.0"
uuid = { version = "1.1.2", features = ["v4"] }
xml-rs = "0.8.4"
yaml-merge-keys = { version = "0.5.1", features = ["serde_yaml"] }

# Pin rust_decimal version since it's not stable enough yet
rust_decimal = "~1.26.1"
rust_decimal_macros = "~1.26.1"

diesel = { version = "2.0.0", features = ["sqlite", "chrono"] }
diesel_migrations = "2.0.0"
diesel-derive-enum = { version = "2.0.0-rc.0", features = ["sqlite"] }
libsqlite3-sys = { version = "0.25.1", features = ["bundled"] }

static_table_derive = "0.1.48"
xls_table_derive = "0.5.15"

[patch.crates-io]
static_table_derive = { path = "src/formatting/static_table_derive" }
xls_table_derive = { path = "src/xls/xls_table_derive" }

[dev-dependencies]
mockito = "0.31.0"
qtrac-retest = "4.0.13"
rstest = "0.15.0"
tempfile = "3.3.0"
url = "2.2.2"