File: xmlgen.cabal

package info (click to toggle)
haskell-xmlgen 0.6.2.2-3
  • links: PTS
  • area: main
  • in suites: buster
  • size: 124 kB
  • sloc: haskell: 578; xml: 38; makefile: 5
file content (47 lines) | stat: -rw-r--r-- 1,727 bytes parent folder | download | duplicates (4)
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
Name:                xmlgen
Version:             0.6.2.2
Synopsis:            Fast XML generation library
Description:         Library for high-performance XML generation.
License:             BSD3
License-file:        LICENSE
Author:              Stefan Wehr, Stefan Schmidt, Johannes Weiss, David Leuschner
Maintainer:          Stefan Wehr <wehr@factisresearch.com>
Category:            Text, XML
Build-type:          Simple
Cabal-version:       >= 1.10
Tested-With:         GHC==7.0.4, GHC==7.2.1, GHC==7.4.1, GHC==7.4.2, GHC==7.6.1

Source-Repository head
  type:     git
  location: https://github.com/skogsbaer/xmlgen

Library
  Exposed-modules:   Text.XML.Generator
  Hs-Source-Dirs:    src
  Build-Depends:     base >= 4.2 && < 5, blaze-builder >= 0.3,
                     bytestring >= 0.9, containers >= 0.3,
                     mtl >= 2.0, text >= 0.10
  Ghc-Prof-Options: -auto-all -caf-all
  Default-language:  Haskell2010

test-suite xmlgen-tests
  Type:              exitcode-stdio-1.0
  Hs-Source-Dirs:    test
  Main-Is:           GeneratorTest.hs
  Build-depends:     base >= 4.2 && < 5, xmlgen, text >= 0.10,
                     containers >= 0.3, hxt == 9.3.*, bytestring >= 0.9,
                     filepath >= 1.3, process >= 1.1, HUnit >= 1.2, QuickCheck >= 2.5
  if !os(windows)
    Build-depends:   unix >= 2.4

  Default-language:  Haskell2010

Benchmark xmlgen-bench
  Type:             exitcode-stdio-1.0
  Build-Depends:    base >= 4.2 && < 5, text >= 0.10, criterion >= 0.6,
                    bytestring >= 0.9, xmlgen
  Hs-Source-Dirs:   test
  Ghc-Options:      -O2 -rtsopts
  Ghc-Prof-Options: -auto-all -caf-all
  Main-Is:          GeneratorBenchmarks.hs
  Default-language: Haskell2010