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
32
33
34
35
36
|
cabal-version: 3.0
name: wayligmative
version: 0.1.0.0
maintainer: rutger@viasalix.nl
author: Rutger Broekhoff
build-type: Simple
executable wayligmative
main-is: Main.hs
hs-source-dirs: app
other-modules:
Data.Iban
Data.Res
Import.Ing.CurrentAccountCsv
Import.Ing.CurrentAccountCsv2
Import.Ing.Shared
Import.Ing.SavingsAccountCsv
default-language: GHC2024
ghc-options: -Wall -threaded
build-depends:
base ^>=4.20.0.0,
parsec,
brick,
vty,
cassava,
Decimal,
text,
time,
attoparsec,
containers,
vector,
bytestring,
regex-tdfa,
tz,
pretty-simple
|