-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
31 lines (29 loc) · 1.01 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "etradeTaxReturnHelper"
version = "0.6.1"
edition = "2021"
description = "Parses etrade and revolut financial documents for transaction details (income, tax paid, cost basis) and compute total income and total tax paid according to chosen tax residency (currency)"
license = "BSD-3-Clause"
readme = "README.md"
keywords = ["etrade","revolut"]
repository = "https://github.com/jczaja/e-trade-tax-return-pl-helper"
homepage = "https://github.com/jczaja/e-trade-tax-return-pl-helper"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["gui"]
gui = ["fltk"]
[dependencies]
pdf = "0.7.2"
chrono = "0.4"
reqwest = { version = "0.11.16", features = ["blocking", "json"] }
serde = { version = "1.0.104", features = ["derive"] }
simple_logger = "4.0.0"
log = "0.4.0"
clap = "~2.27.0"
regex = "1.3.3"
calamine = "0.22.1"
wild = "2.2.0"
fltk = {version = "=1.3.24", features = ["fltk-bundled"], optional = true}
nom = "7.1.3"
polars = "0.35.4"
csv = "1.3.0"