summaryrefslogtreecommitdiffstats
path: root/rdcapsis.cabal
diff options
context:
space:
mode:
authorRutger Broekhoff2025-07-23 12:05:08 +0200
committerRutger Broekhoff2025-07-23 12:05:08 +0200
commit56273cf3b371312f0e72fc2af95a9dcacc8228b8 (patch)
treeb4249523cab145fa32e2fdfb826cb592dcfdc127 /rdcapsis.cabal
parenta40d93a36f0dd9f493757d793321f38a58cbb21b (diff)
downloadrdcapsis-56273cf3b371312f0e72fc2af95a9dcacc8228b8.tar.gz
rdcapsis-56273cf3b371312f0e72fc2af95a9dcacc8228b8.zip
Slaying
Diffstat (limited to 'rdcapsis.cabal')
-rw-r--r--rdcapsis.cabal43
1 files changed, 27 insertions, 16 deletions
diff --git a/rdcapsis.cabal b/rdcapsis.cabal
index 20afc21..3b4bd16 100644
--- a/rdcapsis.cabal
+++ b/rdcapsis.cabal
@@ -6,31 +6,42 @@ author: Rutger Broekhoff
6build-type: Simple 6build-type: Simple
7 7
8executable rdcapsis 8executable rdcapsis
9 main-is: Main.hs 9 main-is: Main.hs
10 hs-source-dirs: app 10 hs-source-dirs: app
11 other-modules: 11 other-modules:
12 Data.Iban 12 Data.Iban
13 Data.Ledger
14 Data.Ledger.AutoFile
13 Data.Res 15 Data.Res
16 Import.Ing.Convert
14 Import.Ing.CurrentAccountCsv 17 Import.Ing.CurrentAccountCsv
15 Import.Ing.Shared
16 Import.Ing.SavingsAccountCsv 18 Import.Ing.SavingsAccountCsv
19 Import.Ing.Shared
17 20
18 default-language: GHC2024 21 default-language: GHC2024
19 ghc-options: -Wall -threaded 22 default-extensions:
23 AllowAmbiguousTypes DuplicateRecordFields NoMonomorphismRestriction
24 OverloadedRecordDot OverloadedLabels OverloadedStrings
25
26 ghc-options: -Wall -threaded
20 build-depends: 27 build-depends:
21 base ^>=4.20.0.0,
22 parsec,
23 cassava,
24 Decimal, 28 Decimal,
25 text,
26 time,
27 attoparsec, 29 attoparsec,
28 containers, 30 base ^>=4.21.0.0,
29 vector,
30 bytestring, 31 bytestring,
32 cassava,
33 containers,
34 constraints-extras,
35 dependent-map,
36 dependent-sum,
37 dependent-sum-template,
38 generic-lens,
39 lens,
40 parsec,
41 pretty-simple,
31 regex-tdfa, 42 regex-tdfa,
43 text,
44 time,
32 tz, 45 tz,
33 pretty-simple, 46 uuid,
34 gi-adwaita, 47 vector
35 gi-gtk4,
36 haskell-gi-base