packages feed

pipes-attoparsec-0.3.0: pipes-attoparsec.cabal

name:               pipes-attoparsec
version:            0.3.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.6.3
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: Pipes.Attoparsec
  other-modules:   Pipes.Attoparsec.Internal
  build-depends:
      base         (==4.*)
    , attoparsec   (>=0.10 && <0.11)
    , bytestring   (>=0.9.2.1)
    , pipes        (>=4.0 && <4.1)
    , pipes-parse  (>=2.0 && <2.1)
    , text         (>=0.11.2.3)
    , 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
    , attoparsec
    , mmorph
    , pipes
    , pipes-attoparsec
    , pipes-parse
    , text
    , transformers
    , QuickCheck                 (== 2.*)
    , HUnit                      (== 1.*)
    , test-framework             (>= 0.6)
    , test-framework-quickcheck2 (>= 0.2)
    , test-framework-hunit       (>= 0.2)