packages feed

conduino-0.2.0.0: conduino.cabal

cabal-version: 1.12

-- This file has been generated from package.yaml by hpack version 0.31.2.
--
-- see: https://github.com/sol/hpack
--
-- hash: e4f50c4a474c128ace934290082d6a4eda455370d44bb3efb0192215a4fbcd1b

name:           conduino
version:        0.2.0.0
synopsis:       Lightweight composable continuation-based stream processors
description:    A lightweight continuation-based stream processing library.
                .
                It is similar in nature to pipes and conduit, but useful if you just want
                something quick to manage composable stream processing without focus on IO.
                .
                See README for more information.
category:       Control
homepage:       https://github.com/mstksg/conduino#readme
bug-reports:    https://github.com/mstksg/conduino/issues
author:         Justin Le
maintainer:     justin@jle.im
copyright:      (c) Justin Le 2019
license:        BSD3
license-file:   LICENSE
tested-with:    GHC >= 8.4 && < 8.10
build-type:     Simple
extra-source-files:
    README.md
    CHANGELOG.md

source-repository head
  type: git
  location: https://github.com/mstksg/conduino

library
  exposed-modules:
      Data.Conduino
      Data.Conduino.Combinators
      Data.Conduino.Internal
  other-modules:
      Paths_conduino
  hs-source-dirs:
      src
  ghc-options: -Wall -Wcompat -Wredundant-constraints -Werror=incomplete-patterns
  build-depends:
      base >=4.11 && <5
    , bytestring
    , containers
    , free
    , list-transformer
    , mtl
    , transformers
  default-language: Haskell2010