packages feed

pipes-attoparsec-0.2.0.0: pipes-attoparsec.cabal

name:               pipes-attoparsec
version:            0.2.0.0
license:            BSD3
license-file:       LICENSE
copyright:          Copyright (c) Renzo Carbonara 2012-2013, Paolo Capriotti 2012
author:             Renzo Carbonara
maintainer:         renzocarbonaraλgmail.com
stability:          Experimental
tested-with:        GHC ==7.4.1
homepage:           https://github.com/k0001/pipes-attoparsec
bug-reports:        https://github.com/k0001/pipes-attoparsec/issues
category:           Pipes, Parser
build-type:         Simple
cabal-version:      >=1.8
synopsis:           Attoparsec and Pipes integration.
extra-source-files: README.md PEOPLE NEWS
description:
  Utilities to run @attoparsec@ parsers on @pipes@ input streams.
  .
  See the @NEWS@ file in the source distribution to learn about any
  important changes between version.

source-repository head
    type: git
    location: git://github.com/k0001/pipes-attoparsec.git

library
  hs-source-dirs:  src
  exposed-modules: Control.Proxy.Attoparsec
                   Control.Proxy.Attoparsec.Internal
  build-depends:
      base         (==4.*)
    , pipes        (>=3.3 && <3.4)
    , pipes-parse  (>=1.0 && <1.1)
    , attoparsec   (>=0.10 && <0.11)
    , bytestring   (>=0.9.2.1)
    , text
    , transformers (>=0.2 && <=0.4)
  ghc-options: -Wall -O2

test-suite tests
  type:           exitcode-stdio-1.0
  hs-source-dirs: tests
  main-is:        Main.hs
  other-modules:  Test.Attoparsec
  ghc-options: -Wall -rtsopts -fno-warn-missing-signatures

  build-depends:
      base
    , mmorph
    , pipes
    , attoparsec
    , text
    , pipes-attoparsec
    , pipes-parse
    , QuickCheck                 (== 2.*)
    , HUnit                      (== 1.*)
    , test-framework             (>= 0.6)
    , test-framework-quickcheck2 (>= 0.2)
    , test-framework-hunit       (>= 0.2)