-
Notifications
You must be signed in to change notification settings - Fork 3
/
snappy-framing.cabal
40 lines (32 loc) · 1.17 KB
/
snappy-framing.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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: [email protected]
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