packages feed

bspack-0.0.2: bspack.cabal

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

name:                bspack
version:             0.0.2
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:           
category:            Data
build-type:          Simple
-- extra-source-files:  
cabal-version:       >=1.10

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

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