attoparsec-text-0.8.0.0: attoparsec-text.cabal
name: attoparsec-text
version: 0.8.0.0
license: BSD3
license-file: LICENSE
category: Text, Parsing
author: Felipe Lessa <felipe.lessa@gmail.com>, Bryan O'Sullivan <bos@serpentine.com>
maintainer: Felipe Lessa <felipe.lessa@gmail.com>
stability: experimental
tested-with: GHC == 6.12.1
synopsis: Fast combinator parsing for texts
cabal-version: >= 1.6
-- homepage: http://bitbucket.org/bos/attoparsec
-- bug-reports: http://bitbucket.org/bos/attoparsec/issues
build-type: Simple
description:
A fast parser combinator library, aimed particularly at dealing
efficiently with network protocols and complicated text/binary
file formats.
.
This library is basically a translation of the original
attoparsec library to use text instead of bytestrings.
extra-source-files:
README.markdown
benchmarks/Makefile
benchmarks/Tiny.hs
benchmarks/med.txt.bz2
tests/Makefile
tests/QC.hs
tests/QCSupport.hs
tests/TestFastSet.hs
-- examples/Makefile
-- examples/Parsec_RFC2616.hs
-- examples/RFC2616.hs
-- examples/TestRFC2616.hs
-- examples/rfc2616.c
library
build-depends: base >= 3 && < 5,
attoparsec >= 0.7 && < 0.9,
text >= 0.10 && < 0.12,
containers >= 0.1.0.1 && < 0.4,
array >= 0.1 && < 0.4
extensions: CPP
exposed-modules: Data.Attoparsec.Text
Data.Attoparsec.Text.FastSet
Data.Attoparsec.Text.Lazy
other-modules: Data.Attoparsec.Text.Internal
ghc-options: -Wall
ghc-prof-options: -auto-all