packages feed

snappy-framing-0.1.2: snappy-framing.cabal

name:                snappy-framing
version:             0.1.2
synopsis:            Snappy Framing Format in Haskell
homepage:            https://github.com/kim/snappy-framing
bug-reports:         https://github.com/kim/snappy-framing/issues
license:             MPL-2.0
license-file:        LICENSE
author:              Kim Altintop
maintainer:          kim.altintop@gmail.com
copyright:           Copyright (c) 2013 Kim Altintop
category:            Codec, Compression
build-type:          Simple
cabal-version:       >=1.10

description:
  Implementation of the Snappy framing format (SVN revision 71, cf.
  <http://code.google.com/p/snappy/source/browse/trunk/framing_format.txt?r=71>)

extra-source-files:  README.md

source-repository head
  type:     git
  location: git://github.com/kim/snappy-framing.git

library
  default-language:  Haskell2010

  hs-source-dirs:    src

  ghc-options:      -Wall -fwarn-tabs -funbox-small-strict-fields

  exposed-modules:   Codec.Compression.Snappy.Framing
                     Data.Digest.CRC32C

  build-depends:
      array       >= 0.4
    , base        > 4 && < 5
    , binary      >= 0.7
    , bytestring  >= 0.10
    , snappy      >= 0.2.0.2