-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathmsgpack-rpc.cabal
58 lines (51 loc) · 1.95 KB
/
msgpack-rpc.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
cabal-version: 1.12
name: msgpack-rpc
version: 1.1.0
synopsis: A MessagePack-RPC Implementation
description: A MessagePack-RPC Implementation <http://msgpack.org/>
homepage: http://msgpack.org/
bug-reports: https://github.com/msgpack/msgpack-haskell/issues
license: BSD3
license-file: LICENSE
author: Hideyuki Tanaka
maintainer: Herbert Valerio Riedel <[email protected]>
copyright: (c) 2010-2015, Hideyuki Tanaka
category: Network
build-type: Simple
source-repository head
type: git
location: http://github.com/msgpack/msgpack-haskell.git
subdir: msgpack-rpc
library
default-language: Haskell2010
hs-source-dirs: src
exposed-modules: Network.MessagePack.Server
Network.MessagePack.Client
build-depends: base == 4.14.*
, binary == 0.8.*
, bytestring == 0.10.*
, binary-conduit == 1.3.*
, conduit == 1.3.*
, conduit-extra == 1.3.*
, exceptions == 0.10.*
, msgpack == 1.2.*
, mtl == 2.2.*
, monad-control == 1.0.*
, network == 3.1.*
, streaming-commons == 0.2.*
, text == 1.2.*
test-suite msgpack-rpc-test
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: test.hs
build-depends: msgpack-rpc
-- inherited constraints via `msgpack-rpc`
, base
, conduit-extra == 1.3.*
, mtl
, network
-- test-specific dependencies
, async
, tasty
, tasty-hunit