packages feed

streaming-with-0.3.0.0: streaming-with.cabal

name:                streaming-with
version:             0.3.0.0
synopsis:            with/bracket-style idioms for use with streaming
description:
    This package provides the foundations for a continuation-based
    approach for dealing with resources in the streaming ecosystem.
license:             MIT
license-file:        LICENSE
author:              Ivan Lazar Miljenovic
maintainer:          Ivan.Miljenovic@gmail.com
copyright:           Ivan Lazar Miljenovic
category:            Data, Streaming
build-type:          Simple
extra-source-files:  ChangeLog.md, README.md
cabal-version:       >=1.10
tested-with:         GHC == 8.0.2  || == 8.2.2  || == 8.4.4
                      || == 8.6.5  || == 8.8.4  || == 8.10.4
                      || == 9.0.1

source-repository head
  type:     git
  location: https://github.com/haskell-streaming/streaming-with.git

library
  exposed-modules:     Streaming.With
                     , Streaming.With.Lifted
  build-depends:       base >= 4.8 && < 5
                     , exceptions >= 0.6 && < 0.11
                     , managed == 1.0.*
                     , streaming-bytestring == 0.2.*
                     , temporary >= 1.2.1 && < 1.4
                     , transformers
  hs-source-dirs:      src
  default-language:    Haskell2010