summaryrefslogtreecommitdiffstats
path: root/rdcapsis.cabal
blob: 3b4bd160d044d61bbc807c2434d6c41c97256dda (about) (plain) (blame)
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
37
38
39
40
41
42
43
44
45
46
47
cabal-version: 3.0
name:          rdcapsis
version:       0.1.0.0
maintainer:    rutger@viasalix.nl
author:        Rutger Broekhoff
build-type:    Simple

executable rdcapsis
    main-is:            Main.hs
    hs-source-dirs:     app
    other-modules:
        Data.Iban
        Data.Ledger
        Data.Ledger.AutoFile
        Data.Res
        Import.Ing.Convert
        Import.Ing.CurrentAccountCsv
        Import.Ing.SavingsAccountCsv
        Import.Ing.Shared

    default-language:   GHC2024
    default-extensions:
        AllowAmbiguousTypes DuplicateRecordFields NoMonomorphismRestriction
        OverloadedRecordDot OverloadedLabels OverloadedStrings

    ghc-options:        -Wall -threaded
    build-depends:
        Decimal,
        attoparsec,
        base ^>=4.21.0.0,
        bytestring,
        cassava,
        containers,
        constraints-extras,
        dependent-map,
        dependent-sum,
        dependent-sum-template,
        generic-lens,
        lens,
        parsec,
        pretty-simple,
        regex-tdfa,
        text,
        time,
        tz,
        uuid,
        vector