summaryrefslogtreecommitdiff
path: root/coalpit.cabal
blob: 91e175a35b40229ff01d98f84a7a08fb76b3bc52 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
-- Initial coalpit.cabal generated by cabal init.  For further 
-- documentation, see http://haskell.org/cabal/users-guide/

name:                coalpit
version:             0.1.0.0
-- synopsis:            
-- description:         
license:             BSD3
license-file:        LICENSE
author:              defanor
maintainer:          defanor@uberspace.net
-- copyright:           
category:            Console
build-type:          Simple
extra-source-files:  ChangeLog.md
                   , Example.hs
                   , README.md
cabal-version:       >=1.10

library
  exposed-modules:     Coalpit
  other-extensions:    TemplateHaskell, FlexibleInstances
  build-depends:       base >= 4.9 && < 5
                     , megaparsec >= 6.2 && < 7
  default-language:    Haskell2010

test-suite test-coalpit
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Test.hs
  build-depends:       base >= 4.9 && < 5
                     , megaparsec >= 6.2 && < 7
                     , generic-random >= 1 && < 2
                     , tasty >= 0.12 && < 1
                     , tasty-quickcheck >= 0.9 && < 1
                     , tasty-travis >= 0.2 && < 1
                     , coalpit