summaryrefslogtreecommitdiffstats
path: root/wayligmative.cabal
diff options
context:
space:
mode:
authorRutger Broekhoff2025-03-18 15:29:27 +0100
committerRutger Broekhoff2025-03-18 15:31:11 +0100
commit86c8896ee69b068368b4ef9a4c3923285907c328 (patch)
treedc6e4f58a511c58e2910e9f7ea900165da7d47c6 /wayligmative.cabal
downloadrdcapsis-86c8896ee69b068368b4ef9a4c3923285907c328.tar.gz
rdcapsis-86c8896ee69b068368b4ef9a4c3923285907c328.zip
Parsing ING statements (POC)
Diffstat (limited to 'wayligmative.cabal')
-rw-r--r--wayligmative.cabal34
1 files changed, 34 insertions, 0 deletions
diff --git a/wayligmative.cabal b/wayligmative.cabal
new file mode 100644
index 0000000..b604e20
--- /dev/null
+++ b/wayligmative.cabal
@@ -0,0 +1,34 @@
1cabal-version: 3.0
2name: wayligmative
3version: 0.1.0.0
4maintainer: [email protected]
5author: Rutger Broekhoff
6build-type: Simple
7
8executable wayligmative
9 main-is: Main.hs
10 hs-source-dirs: app
11 other-modules:
12 Data.Iban
13 Import.Ing.CurrentAccountCsv
14 Import.Ing.Shared
15 Import.Ing.SavingsAccountCsv
16
17 default-language: GHC2024
18 ghc-options: -Wall -threaded
19 build-depends:
20 base ^>=4.20.0.0,
21 parsec,
22 brick,
23 vty,
24 cassava,
25 Decimal,
26 text,
27 time,
28 attoparsec,
29 containers,
30 vector,
31 bytestring,
32 regex-tdfa,
33 tz,
34 pretty-simple