packages feed

packer-0.1.4: packer.cabal

Name:                packer
Version:             0.1.4
Description:         Fast byte serializer and unserializer
License:             BSD3
License-file:        LICENSE
Copyright:           Vincent Hanquez <vincent@snarc.org>
Author:              Vincent Hanquez <vincent@snarc.org>
Maintainer:          Vincent Hanquez <vincent@snarc.org>
Synopsis:            Fast byte serializer and unserializer
Build-Type:          Simple
Category:            Data
stability:           experimental
Cabal-Version:       >=1.8
Homepage:            http://github.com/vincenthz/hs-packer

Library
  Build-Depends:     base >= 3 && < 5
                   , bytestring
                   , array
                   , mtl
  Exposed-modules:   Data.Packer
                     Data.Packer.Unsafe
                     Data.Packer.IO
  Other-modules:     Data.Packer.Internal
                     Data.Packer.Endian

Test-Suite test-packer
  type:              exitcode-stdio-1.0
  hs-source-dirs:    Tests
  Main-Is:           Tests.hs
  Build-depends:     base >= 4 && < 5
                   , bytestring
                   , HUnit
                   , QuickCheck >= 2
                   , test-framework >= 0.3.3
                   , test-framework-quickcheck2 >= 0.2.9
                   , test-framework-hunit
                   , packer

source-repository head
  type:     git
  location: git://github.com/vincenthz/hs-packer