packages feed

pipes-binary-0.4.4: pipes-binary.cabal

name:               pipes-binary
version:            0.4.4
license:            BSD3
license-file:       LICENSE
copyright:          Copyright (c) Renzo Carbonara 2013
author:             Renzo Carbonara
maintainer:         renλren.zone
stability:          Experimental
homepage:           https://github.com/k0001/pipes-binary
bug-reports:        https://github.com/k0001/pipes-binary/issues
category:           Pipes
build-type:         Simple
synopsis:           Encode and decode binary streams using the pipes and binary libraries.
cabal-version:      >=1.10
extra-source-files: README.md PEOPLE changelog.md
description:
  Encode and decode binary Pipes streams using the @binary@ library.
  .
  See the @changelog.md@ file in the source distribution to learn about any
  important changes between version.

source-repository head
    type: git
    location: git://github.com/k0001/pipes-binary.git

library
    hs-source-dirs:    src
    exposed-modules:   Pipes.Binary
    ghc-options:       -Wall -O2
    default-language:  Haskell2010
    build-depends:
          base             >= 4.5     && < 5
        , binary           >= 0.6
        , bytestring       >= 0.9.2.1
        , ghc-prim
        , pipes            >= 4.0
        , pipes-parse      >= 3.0
        , pipes-bytestring >= 2.0
        , transformers     >= 0.2

test-suite tests
    type:              exitcode-stdio-1.0
    hs-source-dirs:    tests
    main-is:           Main.hs
    default-language:  Haskell2010
    build-depends:
          base
        , binary
        , bytestring
        , ghc-prim
        , lens-family-core >= 1.0
        , pipes
        , pipes-binary
        , pipes-parse
        , tasty            >= 0.8
        , tasty-hunit      >= 0.8
        , tasty-quickcheck >= 0.9
        , transformers