packages feed

XMLParser-0.1.0.8: XMLParser.cabal

name: XMLParser
version: 0.1.0.8
cabal-version: >=1.10
build-type: Simple
license: GPL-3
license-file: LICENSE
maintainer: hawk.alan@gmail.com
homepage: xy30.com
synopsis: A library to parse xml
description:
    uses parsec to parse xml
category: XML
author: Alan Hawkins
extra-source-files:
    ChangeLog.md
    README.md

source-repository head
    type: git
    location: http://github.com/xpika/XMLParser.git

library
    hs-source-dirs: src
    other-modules:
          Text.XMLParser.XMLParser
        , Text.XMLParser.Util
    exposed-modules:
        Text.XMLParser
    build-depends:
        base <10000,
        parsec <10000
    default-language: Haskell2010
    default-extensions: Safe
    other-extensions: NoMonomorphismRestriction FlexibleContexts