aboutsummaryrefslogtreecommitdiff
path: root/hs-visinter.cabal
blob: 9c5e18dfc10705a713d8c67b4798c79dd0cd6d86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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.16 && < 4.17,
    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