packages feed

bspack-0.0.4: bspack.cabal

-- Initial bspack.cabal generated by cabal init.  For further 
-- documentation, see http://haskell.org/cabal/users-guide/

name:                bspack
version:             0.0.4
synopsis:            A simple and fast bytestring packer
description:         A simple and fast bytestring packer
homepage:            https://github.com/NicolasDP/hs-bspack
license:             BSD3
license-file:        LICENSE
author:              Nicolas DI PRIMA
maintainer:          nicolas@di-prima.fr
copyright:           Copyright © 2014 Nicolas DI PRIMA
category:            Data
build-type:          Simple
cabal-version:       >=1.10

library
  exposed-modules:     Data.ByteString.Pack
  other-modules:       Data.ByteString.Pack.Internal
  -- other-extensions:    
  build-depends:       base == 4.*
                     , bytestring
                     , ghc-prim
  default-language:    Haskell2010
  ghc-options:         -Wall -fno-warn-orphans -O2

Benchmark bench-bspack
    hs-source-dirs:    Tests
    Main-Is:           Bench.hs
    type:              exitcode-stdio-1.0
    Default-Language:  Haskell2010
    Build-depends:     base >= 4 && < 5
                     , bytestring
                     , criterion
                     , bspack
                     , blaze-builder
                     , sandi

Test-Suite  tests
  type:                exitcode-stdio-1.0
  hs-source-dirs:      Tests
  Main-is:             Tests.hs
  Build-Depends:       base == 4.*
                     , bytestring
                     , mtl
                     , tasty
                     , tasty-quickcheck
                     , tasty-hunit
                     , bspack
  ghc-options:         -Wall -fno-warn-orphans -fno-warn-missing-signatures
  default-language:    Haskell2010