investments 4.19.0

Helps you with managing your investments
Documentation
[package]
name = "investments"
version = "4.19.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 = ["/src/quotes/tinkoff/api", "/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 = "2.0.2"
calamine = "0.19.1"
chrono = "0.4.24"
chrono-tz = "0.8.1"
cast = "0.3.0"
clap = "4.2.1"
clap_complete = "4.2.0"
csv = "1.2.1"
cusip = "0.2.4"
easy-logging = "0.1.2"
encoding_rs = "0.8.32"
governor = "0.5.1"
indoc = "2.0.1"
isin = "0.1.14"
itertools = "0.10.5"
lazy_static = "1.4.0"
log = "0.4.17"
maplit = "1.0.2"
matches = "0.1.10"
num-integer = "0.1.45"
num-traits = "0.2.15"
platforms = "3.0.2"
prettytable-rs = "0.10.0"
prometheus = "0.13.3"
prost = "0.11"
prost-types = "0.11"
quick-xml = { version = "0.28.1", features = [ "serialize" ] }
rayon = "1.7.0"
regex = "1.7.3"
reqwest = { version = "0.11.16", features = ["blocking", "json"] }
separator = "0.4.1"
serde = { version = "1.0.159", features = ["derive"] }
serde_json = "1.0.95"
serde_yaml = "0.8.26"
serde-xml-rs = "0.6.0"
shellexpand = "3.1.0"
textwrap = "0.16.0"
tokio = "1.27.0"
tonic = { version = "0.9", features = ["tls", "tls-roots"] }
uuid = { version = "1.3.0", features = ["v4"] }
validator = { version = "0.16.0", features = ["derive"] }
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.29.1"
rust_decimal_macros = "~1.29.1"

diesel = { version = "2.0.3", features = ["sqlite", "chrono"] }
diesel_migrations = "2.0.0"
diesel-derive-enum = { version = "2.0.1", features = ["sqlite"] }
libsqlite3-sys = { version = ">=0.17.2, <0.26.0", features = ["bundled"] }

static_table_derive = "0.1.54"
xls_table_derive = "0.5.21"

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

[build-dependencies]
tonic-build = "0.9"

[dev-dependencies]
mockito = "1.0.2"
qtrac-retest = "4.0.14"
rstest = "0.17.0"
tempfile = "3.5.0"
url = "2.3.1"