aboutsummaryrefslogtreecommitdiff
path: root/bbcode/thermoprint-bbcode.cabal
blob: f25ffdfffe3b2062d37563fdd400ae3e1f0ea198 (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
38
39
40
41
42
43
44
-- Initial thermoprint-bbcode.cabal generated by cabal init.  For further 
-- documentation, see http://haskell.org/cabal/users-guide/

name:                thermoprint-bbcode
version:             0.0.0
synopsis:            A parser for a subset of bbcode compatible with thermoprint-spec
-- description:         
homepage:            http://dirty-haskell.org/tags/thermoprint.html
license:             PublicDomain
license-file:        LICENSE
author:              Gregor Kleen
maintainer:          aethoago@141.li
-- copyright:           
category:            Text
build-type:          Simple
-- extra-source-files:  
cabal-version:       >=1.10

library
  exposed-modules:     Text.BBCode
                     , Text.BBCode.Lexer
  -- other-modules:       
  -- other-extensions:    
  build-depends:       base >=4.8 && <4.9
                     , attoparsec >=0.13.0 && <1
                     , text >=1.2.1 && <2
                     , containers >=0.4.0 && <1
                     , rosezipper >=0.2 && <1
                     , case-insensitive >=1.2.0 && <2
  hs-source-dirs:      src
  default-language:    Haskell2010

Test-Suite tests
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  ghc-options:         -threaded -with-rtsopts=-N
  build-depends:       base >=4.8.1 && <5
                     , thermoprint-bbcode -any
                     , hspec >=2.2.1 && <3
                     , QuickCheck >=2.8.1 && <3
                     , quickcheck-instances >=0.3.11 && <1
                     , attoparsec >=0.13.0 && <1
                     , text >=1.2.1 && <2