aboutsummaryrefslogtreecommitdiff
path: root/hs-visinter.cabal
diff options
context:
space:
mode:
authorTom Smeding <tom@tomsmeding.com>2021-11-20 08:54:46 +0100
committerTom Smeding <tom@tomsmeding.com>2021-11-20 08:54:46 +0100
commitd1cb805a26483cb64fea221cea4991c097f90fc0 (patch)
treee5bb93382d6d75e33064edb48179021ba8af8f9d /hs-visinter.cabal
Initial WIP
Diffstat (limited to 'hs-visinter.cabal')
-rw-r--r--hs-visinter.cabal24
1 files changed, 24 insertions, 0 deletions
diff --git a/hs-visinter.cabal b/hs-visinter.cabal
new file mode 100644
index 0000000..ba035ab
--- /dev/null
+++ b/hs-visinter.cabal
@@ -0,0 +1,24 @@
+cabal-version: 2.0
+name: hs-visinter
+synopsis: Visualising interpreter for a subset of Haskell
+version: 0.1.0.0
+license: MIT
+author: Tom Smeding
+maintainer: tom@tomsmeding.com
+build-type: Simple
+
+executable hs-visinter
+ main-is: Main.hs
+ other-modules:
+ AST
+ Parser
+ build-depends:
+ base >= 4.13 && < 4.15,
+ containers >= 0.6.3.1 && < 0.7,
+ parsec >= 3.1.14.0 && < 3.2,
+ mtl,
+ monad-chronicle ^>= 1.0.0.1,
+ these
+ hs-source-dirs: .
+ default-language: Haskell2010
+ ghc-options: -Wall -O2 -threaded