-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathmsgpack.cabal
More file actions
55 lines (48 loc) · 1.83 KB
/
Copy pathmsgpack.cabal
File metadata and controls
55 lines (48 loc) · 1.83 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: msgpack
version: 0.8.0.0
synopsis: A Haskell implementation of MessagePack
description: A Haskell implementation of MessagePack <http://msgpack.org/>
homepage: http://msgpack.org/
license: BSD3
license-file: LICENSE
author: Hideyuki Tanaka
maintainer: Hideyuki Tanaka <tanaka.hideyuki@gmail.com>
copyright: Copyright (c) 2009-2015, Hideyuki Tanaka
category: Data
stability: Experimental
cabal-version: >= 1.18
build-type: Simple
source-repository head
type: git
location: git://github.com/msgpack/msgpack-haskell.git
library
default-language: Haskell2010
hs-source-dirs: src
exposed-modules: Data.MessagePack
Data.MessagePack.Assoc
Data.MessagePack.Object
Data.MessagePack.Get
Data.MessagePack.Put
build-depends: base == 4.*
, mtl >= 2.2
, bytestring >= 0.10
, text >= 1.2
, containers >= 0.5.5
, unordered-containers >= 0.2.5
, hashable
, vector >= 0.10
, blaze-builder >= 0.4
, deepseq >= 1.3
, binary >= 0.7
, data-binary-ieee754
test-suite msgpack-tests
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: test
main-is: test.hs
build-depends: base
, bytestring
, QuickCheck >= 2.8
, tasty >= 0.10
, tasty-quickcheck >= 0.8
, msgpack