summaryrefslogtreecommitdiff
path: root/fun.cabal
diff options
context:
space:
mode:
authorKjetil Orbekk <kjetil.orbekk@gmail.com>2016-03-08 02:46:06 +0100
committerKjetil Orbekk <kjetil.orbekk@gmail.com>2016-03-11 05:21:50 +0100
commit92c9891946646f0f54a19b7699e128571fbdc4b3 (patch)
treea03963e95f787d083079bc6b41fc7876f68fe560 /fun.cabal
parentd2729dc9c89f359347fdfe9dcc88cd3a8e258d04 (diff)
Add simple parser library.
Diffstat (limited to 'fun.cabal')
-rw-r--r--fun.cabal6
1 files changed, 6 insertions, 0 deletions
diff --git a/fun.cabal b/fun.cabal
index 4112596..e9eb3c1 100644
--- a/fun.cabal
+++ b/fun.cabal
@@ -16,7 +16,10 @@ cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: Lib
+ , K.NanoParsec
build-depends: base >= 4.7 && < 5
+ , text
+ , lens
default-language: Haskell2010
executable fun-exe
@@ -33,9 +36,12 @@ test-suite fun-test
main-is: Spec.hs
build-depends: base
, fun
+ , text
+ , lens
, test-framework
, test-framework-quickcheck2
, QuickCheck
+ , quickcheck-text
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010