packages feed

pipes-binary-0.4.0.5: pipes-binary.cabal

name:               pipes-binary
version:            0.4.0.5
license:            BSD3
license-file:       LICENSE
copyright:          Copyright (c) Renzo Carbonara 2013-2014
author:             Renzo Carbonara
maintainer:         renzocarbonaraλgmail.com
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.8
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
    build-depends:
          base             >= 4.5     && < 5
        , binary           >= 0.6     && < 0.8
        , bytestring       >= 0.9.2.1
        , ghc-prim
        , pipes            >= 4.0     && < 4.2
        , pipes-parse      >= 3.0     && < 3.1
        , pipes-bytestring >= 2.0     && < 2.2
        , transformers     >= 0.2     && < 0.5

test-suite tests
    type:              exitcode-stdio-1.0
    hs-source-dirs:    tests
    main-is:           Main.hs
    build-depends:
          base             >= 4.5     && < 5
        , binary           >= 0.6     && < 0.8
        , bytestring       >= 0.9.2.1
        , ghc-prim
        , lens-family-core >= 1.0     && < 1.3
        , pipes            >= 4.0     && < 4.2
        , pipes-binary
        , pipes-parse      >= 3.0     && < 3.1
        , smallcheck       >= 1.0     && < 1.2
        , tasty            >= 0.8     && < 0.12
        , tasty-hunit      >= 0.8     && < 0.10
        , tasty-smallcheck >= 0.2     && < 0.9
        , transformers     >= 0.2     && < 0.5