packages feed

foldl-transduce-attoparsec-0.1.0.1: foldl-transduce-attoparsec.cabal

Name: foldl-transduce-attoparsec
Version: 0.1.0.1
Cabal-Version: >=1.8.0.2
Build-Type: Simple
License: BSD3
License-File: LICENSE
Copyright: 2015 Daniel Diaz
Author: Daniel Diaz
Maintainer: diaz_carrete@yahoo.com
Bug-Reports: https://github.com/danidiaz/foldl-transduce-attoparsec/issues
Synopsis: Attoparsec and foldl-transduce integration.
Description: Attoparsec and foldl-transduce integration.
Category: Control

Extra-Source-Files:
    README.md
    CHANGELOG

Source-Repository head
    Type: git
    Location: git@github.com:danidiaz/foldl-transduce-attoparsec.git

Library
    HS-Source-Dirs: src
    Build-Depends:
        base >= 4 && < 5,
        bytestring    >= 0.9.2.1  && < 0.11,
        text          >= 0.11.2.0 && < 1.3 ,
        foldl-transduce == 0.4.*,
        attoparsec == 0.13.*,
        transformers  >= 0.4.0.0  && < 0.5 ,
        monoid-subclasses == 0.4.*
    Exposed-Modules:
        Control.Foldl.Transduce.Attoparsec
    GHC-Options: -O2 -Wall

test-suite tests
  type:           exitcode-stdio-1.0
  ghc-options:    -Wall -threaded
  hs-source-dirs: tests
  main-is:        tests.hs
  build-depends:
        base >= 4.4 && < 5  ,
        text                ,
        tasty >= 0.10.1.1   ,
        tasty-hunit >= 0.9.2,
        transformers  >= 0.4.0.0  && < 0.5,
        foldl               ,
        foldl-transduce     ,
        foldl-transduce-attoparsec,
        attoparsec    == 0.13.*

test-suite doctests
  type:           exitcode-stdio-1.0
  ghc-options:    -Wall -threaded
  hs-source-dirs: tests
  main-is:        doctests.hs

  build-depends:
        base          >= 4.4 && < 5,
        text          >= 0.11.2.0 && < 1.3,
        attoparsec    == 0.13.*,
        doctest       >= 0.10.1