packages feed

binary-generic-0.2: binary-generic.cabal

name:            binary-generic
version:         0.2
license:         BSD3
license-file:    LICENSE
author:          Lars Petersen <info@lars-petersen.net>
maintainer:      Lars Petersen <info@lars-petersen.net>
homepage:        http://github.com/lpeterse/binary-generic
description:     Instead of manual or semi-automated generation of
                 instances of 'Data.Binary.Binary' you just derive 
                 'Data.Data.Data' and the library automatically
                 figures out how to (de-)serialize the type.
                 You may also define your own type-specific 
                 stack of serialisation functions.
synopsis:        Generic binary serialisation using binary and syb.
category:        Data, Parsing
stability:       experimental
build-type:      Simple
cabal-version:   >= 1.2
tested-with:     GHC == 6.12.1
extra-source-files: README 

library
  build-depends:   base >= 3 && < 5,
                   binary, 
                   data-binary-ieee754,
                   bytestring,
                   syb,
                   text
  hs-source-dirs:  src
  exposed-modules: Data.Binary.Generic,
                   Data.Binary.Generic.Extensions
  ghc-options:     -Wall