aboutsummaryrefslogtreecommitdiff
path: root/lisk.cabal
diff options
context:
space:
mode:
authorAkshay <[email protected]>2020-10-09 07:05:56 +0100
committerAkshay <[email protected]>2020-10-09 07:05:56 +0100
commit06bf4c656377572859846767cb9af5db8fc27893 (patch)
tree489b727cf1e6d31f2b1de66a7ee919c78cca19a5 /lisk.cabal
parent9160b3648a69303c2ed288edec3d8e9bcec52f11 (diff)
use mtl to generate errors
Diffstat (limited to 'lisk.cabal')
-rw-r--r--lisk.cabal4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisk.cabal b/lisk.cabal
index 627815d..bea3414 100644
--- a/lisk.cabal
+++ b/lisk.cabal
@@ -26,7 +26,8 @@ library
26 exposed-modules: 26 exposed-modules:
27 Parser, 27 Parser,
28 Evaluator, 28 Evaluator,
29 Operators 29 Operators,
30 Error
30 31
31executable lisk 32executable lisk
32 default-language: Haskell2010 33 default-language: Haskell2010
@@ -35,6 +36,7 @@ executable lisk
35 base >=4.12 && <4.13, 36 base >=4.12 && <4.13,
36 parsec == 3.*, 37 parsec == 3.*,
37 readline >= 1.0, 38 readline >= 1.0,
39 mtl >= 2.1,
38 lisk 40 lisk
39 hs-source-dirs: bin 41 hs-source-dirs: bin
40 42