attoparsec-text-0.8.2.0: attoparsec-text.cabal
name: attoparsec-text
version: 0.8.2.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://patch-tag.com/r/felipe/attoparsec-text/home
-- 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.
.
Changes in version 0.8.2.0:
.
* Add @IsString@ instance to @Parser@.
.
* Add specializations of @\<*@ and @*\>@, see the docs for
more information.
.
* Add @digit@, @letter@, @space@, @decimal@, @hexadecimal@,
@signed@, @double@ and @rational@.
extra-source-files:
README.markdown
benchmarks/Makefile
benchmarks/Double.hs
benchmarks/Tiny.hs
benchmarks/med.txt.bz2
benchmarks/double_test.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