Name: bytestringreadp Version: 0.2 Stability: alpha License: BSD3 License-File: LICENSE Copyright: 2007-2007, Gracjan Polak Author: Gracjan Polak Maintainer: Gracjan Polak Synopsis: A ReadP style parser library for ByteString Description: This is a library of parser combinators, originally written by Koen Claessen. It parses all alternatives in parallel, so it never keeps hold of the beginning of the input string, a common source of space leaks with other parsers. The '(+++)' choice combinator is genuinely commutative; it makes no difference which branch is \"shorter\". . Adapted to use Data.ByteString by Gracjan Polak. Designed as a drop-in replacement for Text.ParserCombinators.ReadP. Category: Text Cabal-Version: >=1.2 Build-type: Simple Flag splitBase description: Choose the new smaller, split-up base package. Library Exposed-modules: Text.ParserCombinators.ReadP.ByteString if flag(splitBase) build-depends: base >= 3, bytestring else build-depends: base < 3 Ghc-options: -DBYTESTRING_BASE_ONLY Extensions: CPP Hs-source-dirs: src Ghc-options: -O2 CC-options: -O2 Include-dirs: src