packages feed

streaming-utils-0.1.3.0: streaming-utils.cabal

name:                streaming-utils
version:             0.1.3.0
synopsis:            http, attoparsec, pipes and conduit utilities for the streaming libraries
description:         Experimental http-client, attoparsec, conduit pipes utilities for use with
                     the <http://hackage.haskell.org/package/streaming streaming> and 
                     <http://hackage.haskell.org/package/streaming-bytestring streaming bytestring> libraries.
                     Other modules are planned. 
                     .
                     This package of course heaps together a number of dependencies. 
                     Please raise an issue if this is a problem. 
                     .
                     Questions about usage can be raised as issues, or addressed to the 
                     <https://groups.google.com/forum/#!forum/haskell-pipes pipes list>.

license:             BSD3
license-file:        LICENSE
author:              michaelt
maintainer:          what_is_it_to_do_anything@yahoo.com
-- copyright:           
category:            Data
build-type:          Simple
-- extra-source-files:  
cabal-version:       >=1.10
stability:           Experimental
homepage:            https://github.com/michaelt/streaming-utils
bug-reports:         https://github.com/michaelt/streaming-utils/issues
category:            Data, Pipes, Streaming
source-repository head
    type: git
    location: https://github.com/michaelt/streaming-utils

library
  exposed-modules:     Data.Attoparsec.ByteString.Streaming,
                       Data.ByteString.Streaming.HTTP,
                       Data.ByteString.Streaming.Aeson,
                       Streaming.Pipes
  -- other-modules:       
  other-extensions:    CPP, Trustworthy
  
  build-depends:       base >=4.7 && <4.9, 
                       transformers >=0.4 && <0.5, 
                       mtl >=2.2 && <2.3,
                       attoparsec >=0.13.0.1,
                       streaming >=  0.1.3.0 && <= 0.1.3.5,
                       streaming-bytestring >=  0.1.3.0 && <= 0.1.3.5,
                       bytestring, 
                       pipes >= 4.0 && < 4.2,
                       http-client >=0.2 && <0.5, 
                       http-client-tls <0.3,
                       aeson,
                       json-stream == 0.4.0.*
                       
                      
  -- hs-source-dirs:      
  default-language:    Haskell2010