packages feed

binary-store-0.1.0.1: binary-store.cabal

name:                binary-store
version:             0.1.0.1
synopsis:            Format to store data using the binary transform.
description:         ...
license:             BSD3
license-file:        LICENSE
author:              Daniel Díaz
maintainer:          daniel.casanueva@plowtech.net
category:            Data
build-type:          Simple
cabal-version:       >=1.10

library
  exposed-modules: Format.BinaryStore
  build-depends: base == 4.*
               , binary-list >= 1.0.0.0
               , bytestring >= 0.10
               , binary >= 0.7
               , reinterpret-cast
               , binary-transform
                 -- requires libbz2-dev
               , bzlib
               , deepseq
  default-language: Haskell2010
  ghc-options: -O2 -Wall

test-suite binary-store-tests
  default-language: Haskell2010
  type: exitcode-stdio-1.0
  hs-source-dirs: test
  main-is: Main.hs
  build-depends: base == 4.*
               , tasty
               , tasty-quickcheck
               , QuickCheck
               , binary-list
               , binary-store
  ghc-options: -Wall -fno-warn-orphans