File: xml-conduit-writer.cabal

package info (click to toggle)
haskell-xml-conduit-writer 0.1.1.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 64 kB
  • sloc: haskell: 179; makefile: 6
file content (46 lines) | stat: -rw-r--r-- 1,340 bytes parent folder | download
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
cabal-version:       3.0
name:                xml-conduit-writer
version:             0.1.1.5
synopsis:            Warm and fuzzy creation of XML documents.
description:
    “It can scarcely be denied that the supreme goal of
    all theory is to make the irreducible basic elements
    as simple and as few as possible without having to
    surrender the adequate representation of a single
    datum of experience.” ­— Albert Einstein
    .
    Check out more examples in test/Main.hs and
    look at the results with --enable-tests.
homepage:            https://bitbucket.org/dpwiz/xml-conduit-writer
license:             MIT
license-file:        LICENSE
copyright:           Alexander Bondarenko 2013
author:              Alexander Bondarenko
maintainer:          aenor.realm@gmail.com
category:            Text
build-type:          Simple

source-repository head
  type: git
  location: https://bitbucket.org/dpwiz/xml-conduit-writer

library
  default-language: Haskell2010
  hs-source-dirs: src
  exposed-modules:
    Text.XML.Writer
  build-depends:
    base ==4.*,
    xml-conduit, xml-types,
    text,
    mtl, dlist,
    containers,
    data-default

test-suite tests
  default-language: Haskell2010
  type: exitcode-stdio-1.0
  main-is: Main.hs
  hs-source-dirs: test/
  build-depends:
    base, xml-conduit-writer, text