aboutsummaryrefslogtreecommitdiff
path: root/bbcode/bbcode.cabal
blob: b17ff348f9a2e0a45d60a92bf53cdab1f5a69954 (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
-- Initial bbcode.cabal generated by cabal init.  For further 
-- documentation, see http://haskell.org/cabal/users-guide/

name:                bbcode
version:             0.0.0
synopsis:            A tiny parser for bbcode->thermoprint-syntax-tree conversion
-- description:         
homepage:            git://git.yggdrasil.li/thermoprint
license:             PublicDomain
license-file:        LICENSE
author:              Gregor Kleen
maintainer:          aethoago@141.li
-- copyright:           
-- category:            
build-type:          Simple
-- extra-source-files:  
cabal-version:       >=1.10

library
  exposed-modules:     BBCode
  other-modules:       BBCode.Tokenizer
                     , BBCode.Syntax
  -- other-extensions:    
  hs-source-dirs:      src
  default-language:    Haskell2010
  build-depends:       base >=4.8 && <4.9
                     , thermoprint
                     , attoparsec >=0.13.0 && <1
                     , text >=1.2.1 && <2
                     , parsec >=3.1.9 && <4
                     , mtl >=2.2.1 && <3
                     , case-insensitive >=1.2.0 && <2
                     , containers >=0.5.6 && <1