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
45
46
47
48
49
50
51
|
-- Initial thermoprint-bbcode.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: bbcode
version: 3.1.1
synopsis: A parser for bbcode
-- 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:
extensions: OverloadedStrings
, DeriveGeneric
, DeriveAnyClass
, OverloadedLists
build-depends: base >=4.8 && <5
, 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
ghc-options: -Wall
Test-Suite tests
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
ghc-options: -Wall -threaded -with-rtsopts=-N
extensions: OverloadedStrings
, FlexibleInstances
build-depends: base >=4.8.1 && <5
, 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
|