[package]
edition = "2021"
name = "ibflex"
version = "1.5.0"
authors = ["Alen Šiljak"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A library and a CLI for reading Interactive Brokers Flex reports and comparing to Ledger-cli transactions"
readme = "README.md"
keywords = [
"interactivebrokers",
"finance",
"cli",
"flex",
"reports",
]
categories = [
"command-line-utilities",
"finance",
]
license = "GPL-3.0-or-later"
repository = "https://github.com/alensiljak/interactive-brokers-flex-rs"
[lib]
name = "ibflex"
path = "src/lib.rs"
[[bin]]
name = "ibflex"
path = "src/main.rs"
[[test]]
name = "comparison_tests"
path = "tests/comparison_tests.rs"
[[test]]
name = "dl-test"
path = "tests/dl-test.rs"
[[test]]
name = "flex_report_parser_tests"
path = "tests/flex_report_parser_tests.rs"
[[test]]
name = "functional_tests"
path = "tests/functional_tests.rs"
[dependencies.anyhow]
version = "1.0.75"
[dependencies.as-symbols]
version = "^0.5.0"
[dependencies.chrono]
version = "0.4.31"
[dependencies.clap]
version = "4.4.4"
features = ["derive"]
[dependencies.env_logger]
version = "^0.11.10"
[dependencies.glob]
version = "^0.3.1"
[dependencies.log]
version = "^0.4.20"
[dependencies.quick-xml]
version = "^0.37"
features = ["serialize"]
[dependencies.rust_decimal]
version = "^1.32.0"
[dependencies.serde]
version = "^1.0.188"
features = ["derive"]
[dependencies.shell-words]
version = "^1.1.0"
[dependencies.ureq]
version = "2"
[dev-dependencies.assert_cmd]
version = "2.0.12"
[dev-dependencies.rstest]
version = "^0.26.1"
[dev-dependencies.test-log]
version = "^0.2.11"