packages feed

pipes-io-0.1: pipes-io.cabal

name: pipes-io
version: 0.1
synopsis: Stateful IO streams based on pipes
category: Control, Pipes
author: Yin Guanhao
maintainer: Yin Guanhao <yinguanhao@gmail.com>
copyright: Copyright 2016 Yin Guanhao <yinguanhao@gmail.com>
license: Apache-2.0
license-file: LICENSE
build-type: Simple
cabal-version: >=1.10
description:
  `pipes-io` allows you to use pipes and `Parser`s more easily in the
  IO monad, providing a interface similar to that of `io-streams`.
tested-with: GHC == 7.10.3, GHC == 8.0.1

source-repository head
  type: git
  location: https://github.com/yinguanhao/pipes-io

library
  exposed-modules:
    Pipes.IOStream
  build-depends:
    base >= 4.8 && < 5,
    pipes >= 4.1.9 && < 4.2,
    pipes-parse >= 3 && < 3.1
  ghc-options: -Wall
  default-language: Haskell2010

test-suite tests
  type: exitcode-stdio-1.0
  hs-source-dirs: tests
  main-is: Main.hs
  default-language: Haskell2010
  ghc-options: -Wall
  build-depends:
    base,
    pipes-io,
    pipes,
    hspec