Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
petar-dambovaliev committed Jan 23, 2022
0 parents commit be7c3a2
Show file tree
Hide file tree
Showing 9 changed files with 1,087 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/target
.idea
degiro-tax-report.iml
375 changes: 375 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[package]
name = "degiro-tax-report"
version = "0.1.0"
edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
csv = "1.1.6"
chrono = { version = "0.4.19", features = ["serde"] }
serde = { version = "1.0", features = ["derive"] }
dateparser = "0.1.6"
decimal = { version = "2.1.0", features = ["serde"]}
regex = "1.5.4"
lazy_static = "1.4.0"
log = "0.4.14"
env_logger = "0.9.0"
Loading

0 comments on commit be7c3a2

Please sign in to comment.