diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2016-01-12 00:02:10 +0000 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2016-01-12 00:02:10 +0000 |
commit | c9554b25d4ad99ceec1bef7bd60b1df82ef5ce8a (patch) | |
tree | 2701c86c9d75b2cbfae81b92c07949fc1c86fc07 /bbcode/thermoprint-bbcode.cabal | |
parent | 650feae1e8c267981f224e1de31ff4729a526afd (diff) | |
download | thermoprint-c9554b25d4ad99ceec1bef7bd60b1df82ef5ce8a.tar thermoprint-c9554b25d4ad99ceec1bef7bd60b1df82ef5ce8a.tar.gz thermoprint-c9554b25d4ad99ceec1bef7bd60b1df82ef5ce8a.tar.bz2 thermoprint-c9554b25d4ad99ceec1bef7bd60b1df82ef5ce8a.tar.xz thermoprint-c9554b25d4ad99ceec1bef7bd60b1df82ef5ce8a.zip |
BBCode lexer
Diffstat (limited to 'bbcode/thermoprint-bbcode.cabal')
-rw-r--r-- | bbcode/thermoprint-bbcode.cabal | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/bbcode/thermoprint-bbcode.cabal b/bbcode/thermoprint-bbcode.cabal index 537cfe7..ea00969 100644 --- a/bbcode/thermoprint-bbcode.cabal +++ b/bbcode/thermoprint-bbcode.cabal | |||
@@ -17,9 +17,26 @@ build-type: Simple | |||
17 | cabal-version: >=1.10 | 17 | cabal-version: >=1.10 |
18 | 18 | ||
19 | library | 19 | library |
20 | -- exposed-modules: | 20 | exposed-modules: Text.BBCode |
21 | , Text.BBCode.Lexer | ||
21 | -- other-modules: | 22 | -- other-modules: |
22 | -- other-extensions: | 23 | -- other-extensions: |
23 | build-depends: base >=4.8 && <4.9 | 24 | build-depends: base >=4.8 && <4.9 |
25 | , attoparsec >=0.13.0 && <1 | ||
26 | , text >=1.2.1 && <2 | ||
27 | , QuickCheck >=2.8.1 && <3 | ||
28 | , quickcheck-instances >=0.3.11 && <1 | ||
24 | hs-source-dirs: src | 29 | hs-source-dirs: src |
25 | default-language: Haskell2010 \ No newline at end of file | 30 | default-language: Haskell2010 |
31 | |||
32 | Test-Suite tests | ||
33 | type: exitcode-stdio-1.0 | ||
34 | hs-source-dirs: test | ||
35 | main-is: Spec.hs | ||
36 | ghc-options: -threaded -with-rtsopts=-N | ||
37 | build-depends: base >=4.8.1 && <5 | ||
38 | , thermoprint-bbcode -any | ||
39 | , hspec >=2.2.1 && <3 | ||
40 | , QuickCheck >=2.8.1 && <3 | ||
41 | , attoparsec >=0.13.0 && <1 | ||
42 | , text >=1.2.1 && <2 \ No newline at end of file | ||