diff options
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 | ||