packages feed

quiver-binary-0.1.0.0: quiver-binary.cabal

name:                quiver-binary
version:             0.1.0.0
synopsis:            Binary serialisation support for Quivers
description:         Handling for the binary library within Quivers
license:             MIT
license-file:        LICENSE
author:              Ivan Lazar Miljenovic
maintainer:          Ivan.Miljenovic@gmail.com
-- copyright:
category:            Control
build-type:          Simple
extra-source-files:  README.md
                   , stack.yaml
cabal-version:       >=1.10

tested-with:   GHC == 7.10.2, GHC == 7.11.*

source-repository head
    type:         git
    location:     git://github.com/ivan-m/quiver-binary.git

library
  exposed-modules:     Control.Quiver.Binary
  -- other-modules:
  build-depends:       base >=4 && <5
                     , binary >= 0.6 && < 0.9
                     , bytestring
                     , quiver == 1.1.*
                     , quiver-bytestring
  hs-source-dirs:      src
  default-language:    Haskell2010

  ghc-options:         -Wall

test-suite properties
  type:                exitcode-stdio-1.0
  main-is:             PropTests.hs
  build-depends:       quiver-binary
                     , base
                     , quiver
                     , transformers >= 0.4 && < 0.6

                     , QuickCheck >= 2.5 && < 2.9
                       -- Just to make it nicer to write
                     , hspec >= 2.1 && < 2.3
  hs-source-dirs:      test
  default-language:    Haskell2010

  ghc-options:         -Wall
  ghc-prof-options:    -prof -auto