-
Notifications
You must be signed in to change notification settings - Fork 6
/
StopPayingForFreeMonads.cabal
29 lines (28 loc) · 1.05 KB
/
StopPayingForFreeMonads.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
name: StopPayingForFreeMonads
version: 0.1.0.0
synopsis: Code for YOW LambdaJam 2016 workshop
description: Comparing "Datatypes a la carte" with "Typed tagless final interpreters" for typed languages with binding
homepage: https://github.com/mjhopkins/StopPayingForFreeMonads#readme
license: MIT
license-file: LICENSE
author: Mark Hopkins
maintainer: markjohnhopkins@gmail.com
copyright: Mark Hopkins
category: Experimental
build-type: Simple
cabal-version: >=1.10
library
--hs-source-dirs: src
default-language: Haskell2010
build-depends: base >= 4.7 && < 5
, containers
, transformers
, mtl
, exceptions
exposed-modules: ALaCarte
, ALaCarteDSL
, ALaCarteImpl
, Tagless
, Expressions
, Regex
, RegexFinal