1
- name : msgpack-binary
2
- version : 0.0.17
3
- synopsis : A Haskell implementation of MessagePack
4
- homepage : http://msgpack.org/
5
- license : BSD3
6
- license-file : LICENSE
7
- author : Hideyuki Tanaka
8
- maintainer :
Iphigenia Df <
[email protected] >
9
- copyright : Copyright (c) 2009-2016, Hideyuki Tanaka
10
- category : Data
11
- stability : Experimental
12
- cabal-version : >= 1.10
13
- build-type : Simple
1
+ name : msgpack-binary
2
+ version : 0.0.17
3
+ synopsis : A Haskell implementation of MessagePack
4
+ homepage : http://msgpack.org/
5
+ license : BSD3
6
+ license-file : LICENSE
7
+ author : Hideyuki Tanaka
8
+ maintainer : Iphigenia Df <
[email protected] >
9
+ copyright : Copyright (c) 2009-2016, Hideyuki Tanaka
10
+ category : Data
11
+ stability : Experimental
12
+ cabal-version : >= 1.10
13
+ build-type : Simple
14
14
description :
15
15
A Haskell implementation of MessagePack <http://msgpack.org/>
16
16
.
@@ -19,88 +19,75 @@ description:
19
19
bugfixes and is actively being developed.
20
20
21
21
source-repository head
22
- type : git
23
- location : https://github.com/TokTok/hs-msgpack-binary
22
+ type : git
23
+ location : https://github.com/TokTok/hs-msgpack-binary
24
24
25
25
library
26
26
default-language : Haskell2010
27
- hs-source-dirs :
28
- src
29
- ghc-options :
30
- -Wall
31
- -Wno-unused-imports
32
- exposed-modules :
33
- Data.MessagePack
27
+ hs-source-dirs : src
28
+ ghc-options : -Wall -Wno-unused-imports
29
+ exposed-modules : Data.MessagePack
34
30
other-modules :
35
- Data.MessagePack.Get
36
- Data.MessagePack.Put
31
+ Data.MessagePack.Get
32
+ Data.MessagePack.Put
33
+
37
34
build-depends :
38
- base < 5
39
- , binary >= 0.7.0.0
35
+ base < 5
36
+ , binary >= 0.7.0.0
40
37
, bytestring
41
38
, data-binary-ieee754
42
39
, monad-validate
43
- , msgpack-types >= 0.3.2 && < 0.4
40
+ , msgpack-types >= 0.3.2 && < 0.4
44
41
, text
45
42
, vector
46
43
47
44
executable msgpack-gen-sample
48
45
default-language : Haskell2010
49
- hs-source-dirs :
50
- tools
51
- ghc-options :
52
- -Wall
53
- -Wno-unused-imports
54
- main-is : msgpack-gen-sample.hs
46
+ hs-source-dirs : tools
47
+ ghc-options : -Wall -Wno-unused-imports
48
+ main-is : msgpack-gen-sample.hs
55
49
build-depends :
56
- base < 5
57
- , msgpack-arbitrary >= 0.1.3 && < 0.2
50
+ base < 5
51
+ , msgpack-arbitrary >= 0.1.3 && < 0.2
58
52
, msgpack-binary
59
53
60
54
executable msgpack-parser
61
55
default-language : Haskell2010
62
- hs-source-dirs :
63
- tools
64
- ghc-options :
65
- -Wall
66
- -Wno-unused-imports
67
- main-is : msgpack-parser.hs
56
+ hs-source-dirs : tools
57
+ ghc-options : -Wall -Wno-unused-imports
58
+ main-is : msgpack-parser.hs
68
59
build-depends :
69
- base < 5
60
+ base < 5
70
61
, msgpack-arbitrary
71
62
, msgpack-binary
72
63
73
64
test-suite testsuite
74
- type : exitcode-stdio-1.0
65
+ type : exitcode-stdio-1.0
75
66
default-language : Haskell2010
76
- hs-source-dirs : test
77
- main-is : testsuite.hs
78
- other-modules :
79
- Data.MessagePackSpec
80
- ghc-options :
81
- -Wall
82
- -Wno-unused-imports
67
+ hs-source-dirs : test
68
+ main-is : testsuite.hs
69
+ other-modules : Data.MessagePackSpec
70
+ ghc-options : -Wall -Wno-unused-imports
83
71
build-depends :
84
- base < 5
72
+ base < 5
85
73
, hspec
86
74
, msgpack-binary
87
- , msgpack-testsuite >= 0.1.0 && < 0.2
75
+ , msgpack-testsuite >= 0.1.0 && < 0.2
88
76
89
77
benchmark benchmark
90
- type : exitcode-stdio-1.0
78
+ type : exitcode-stdio-1.0
91
79
default-language : Haskell2010
92
- hs-source-dirs : bench
93
- main-is : benchmark.hs
80
+ hs-source-dirs : bench
81
+ main-is : benchmark.hs
94
82
other-modules :
95
- Data.MessagePack.IntBench
96
- Data.MessagePackBench
97
- ghc-options :
98
- -Wall
99
- -Wno-unused-imports
83
+ Data.MessagePack.IntBench
84
+ Data.MessagePackBench
85
+
86
+ ghc-options : -Wall -Wno-unused-imports
100
87
build-depends :
101
- base < 5
102
- , QuickCheck
88
+ base < 5
103
89
, bytestring
104
90
, criterion
105
91
, deepseq
106
92
, msgpack-binary
93
+ , QuickCheck
0 commit comments