diff options
author | Rutger Broekhoff | 2025-03-29 21:24:40 +0100 |
---|---|---|
committer | Rutger Broekhoff | 2025-03-29 21:24:40 +0100 |
commit | 533ba31d0a03600f57ad46f6e55229a7f2b60994 (patch) | |
tree | a22aded356494e7c4865de07ea5d93055f10dece /rdcapsis.cabal | |
parent | 6b27332df29a294167fe4f5b91e2fa0a8f96c665 (diff) | |
download | rdcapsis-533ba31d0a03600f57ad46f6e55229a7f2b60994.tar.gz rdcapsis-533ba31d0a03600f57ad46f6e55229a7f2b60994.zip |
Rename
Diffstat (limited to 'rdcapsis.cabal')
-rw-r--r-- | rdcapsis.cabal | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/rdcapsis.cabal b/rdcapsis.cabal new file mode 100644 index 0000000..5814782 --- /dev/null +++ b/rdcapsis.cabal | |||
@@ -0,0 +1,35 @@ | |||
1 | cabal-version: 3.0 | ||
2 | name: rdcapsis | ||
3 | version: 0.1.0.0 | ||
4 | maintainer: [email protected] | ||
5 | author: Rutger Broekhoff | ||
6 | build-type: Simple | ||
7 | |||
8 | executable rdcapsis | ||
9 | main-is: Main.hs | ||
10 | hs-source-dirs: app | ||
11 | other-modules: | ||
12 | Data.Iban | ||
13 | Data.Res | ||
14 | Import.Ing.CurrentAccountCsv | ||
15 | Import.Ing.Shared | ||
16 | Import.Ing.SavingsAccountCsv | ||
17 | |||
18 | default-language: GHC2024 | ||
19 | ghc-options: -Wall -threaded | ||
20 | build-depends: | ||
21 | base ^>=4.20.0.0, | ||
22 | parsec, | ||
23 | brick, | ||
24 | vty, | ||
25 | cassava, | ||
26 | Decimal, | ||
27 | text, | ||
28 | time, | ||
29 | attoparsec, | ||
30 | containers, | ||
31 | vector, | ||
32 | bytestring, | ||
33 | regex-tdfa, | ||
34 | tz, | ||
35 | pretty-simple | ||