forked from TokTok/hs-msgpack-binary
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdata-msgpack.cabal
111 lines (105 loc) · 2.51 KB
/
data-msgpack.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
name: data-msgpack
version: 0.0.8
synopsis: A Haskell implementation of MessagePack
homepage: http://msgpack.org/
license: BSD3
license-file: LICENSE
author: Hideyuki Tanaka
maintainer: Iphigenia Df <[email protected]>
copyright: Copyright (c) 2009-2016, Hideyuki Tanaka
category: Data
stability: Experimental
cabal-version: >= 1.10
build-type: Simple
description:
A Haskell implementation of MessagePack <http://msgpack.org/>
.
This is a fork of msgpack-haskell <https://github.com/msgpack/msgpack-haskell>,
since the original author is unreachable. This fork incorporates a number of
bugfixes and is actively being developed.
extra-source-files:
bench/Data/MessagePack/*.hs
bench/Data/*.hs
test/Data/MessagePack/*.hs
test/Data/*.hs
source-repository head
type: git
location: https://github.com/TokTok/hs-msgpack.git
library
default-language: Haskell2010
hs-source-dirs:
src
ghc-options:
-Wall
-fno-warn-unused-imports
exposed-modules:
Data.MessagePack
Data.MessagePack.Assoc
Data.MessagePack.Class
Data.MessagePack.Generic
Data.MessagePack.Get
Data.MessagePack.Instances
Data.MessagePack.Object
Data.MessagePack.Put
Data.MessagePack.Result
build-depends:
base < 5
, QuickCheck
, binary >= 0.7.0.0
, bytestring
, containers
, data-binary-ieee754
, deepseq
, hashable
, text
, unordered-containers
, vector
, void
executable msgpack-parser
default-language: Haskell2010
hs-source-dirs:
tools
ghc-options:
-Wall
-fno-warn-unused-imports
build-depends:
base < 5
, bytestring
, groom
, data-msgpack
main-is: msgpack-parser.hs
test-suite testsuite
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: test
main-is: testsuite.hs
ghc-options:
-Wall
-fno-warn-unused-imports
build-depends:
base < 5
, QuickCheck
, bytestring
, containers
, data-msgpack
, hashable
, hspec
, text
, unordered-containers
, vector
, void
benchmark benchmark
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: bench
main-is: benchmark.hs
ghc-options:
-Wall
-fno-warn-unused-imports
build-depends:
base < 5
, QuickCheck
, bytestring
, criterion
, data-msgpack
, deepseq