diff options
author | Rutger Broekhoff | 2025-03-18 15:29:27 +0100 |
---|---|---|
committer | Rutger Broekhoff | 2025-03-18 15:31:11 +0100 |
commit | 86c8896ee69b068368b4ef9a4c3923285907c328 (patch) | |
tree | dc6e4f58a511c58e2910e9f7ea900165da7d47c6 /wayligmative.cabal | |
download | rdcapsis-86c8896ee69b068368b4ef9a4c3923285907c328.tar.gz rdcapsis-86c8896ee69b068368b4ef9a4c3923285907c328.zip |
Parsing ING statements (POC)
Diffstat (limited to 'wayligmative.cabal')
-rw-r--r-- | wayligmative.cabal | 34 |
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 @@ | |||
1 | cabal-version: 3.0 | ||
2 | name: wayligmative | ||
3 | version: 0.1.0.0 | ||
4 | maintainer: [email protected] | ||
5 | author: Rutger Broekhoff | ||
6 | build-type: Simple | ||
7 | |||
8 | executable 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 | ||