packages feed

regex-tdfa-pipes-0.1.0.0: regex-tdfa-pipes.cabal

name:                regex-tdfa-pipes
version:             0.1.0.0
synopsis:            Parse with regular expressions on Producers.
description:         Parse with regular expressions on Producers.
homepage:            http://github.com/erisco/regex-tdfa-pipes
license:             BSD3
license-file:        LICENSE
author:              Eric Brisco
maintainer:          eric.brisco@gmail.com
category:            Text
build-type:          Simple
cabal-version:       >=1.10

source-repository this
  type:         git
  location:     http://github.com/erisco/regex-tdfa-pipes.git
  tag:          0.1.0.0

  
library

  exposed-modules:     Text.Regex.TDFA.Pipes
  
  other-extensions:    MultiParamTypeClasses
                       FlexibleInstances
                       
  build-depends:       base           >=4.7  && <4.8
                     , regex-tdfa     >=1.2  && <1.3
                     , regex-base     >=0.93 && <0.94
                     , pipes          >=4.1  && <4.2
                     , lens           >=4.12 && <4.13
                     , array          >=0.5  && <0.6
                     , monads-tf      >=0.1  && <0.2
                     
                     
  default-language:    Haskell2010