-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmsgpack-arbitrary.cabal
57 lines (53 loc) · 1.63 KB
/
msgpack-arbitrary.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
name: msgpack-arbitrary
version: 0.1.4
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.
source-repository head
type: git
location: https://github.com/TokTok/hs-msgpack-arbitrary
library
default-language: Haskell2010
hs-source-dirs: src
ghc-options: -Wall -Wno-unused-imports
exposed-modules:
Data.MessagePack.Arbitrary
Test.MessagePack.Generate
Test.MessagePack.Parser
Test.QuickCheck.Instances.MessagePack
build-depends:
base <5
, bytestring
, msgpack-types >=0.3.2 && <0.4
, QuickCheck
, quickcheck-instances
, text
, time
test-suite testsuite
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: test
main-is: testsuite.hs
other-modules: Data.MessagePack.ArbitrarySpec
ghc-options: -Wall -Wno-unused-imports
build-tool-depends: hspec-discover:hspec-discover
build-depends:
base <5
, hspec
, msgpack-arbitrary
, msgpack-types
, QuickCheck