-
Notifications
You must be signed in to change notification settings - Fork 0
/
haxl-binary.cabal
50 lines (44 loc) · 1.82 KB
/
haxl-binary.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
name: haxl-binary
version: 0.1
synopsis: Haxlimplementation using the binary package
description:
license: BSD3
license-file: LICENSE
author: Justin Dawson
maintainer: [email protected]
copyright: (c) 2017 The University of Kansas
category: Network
build-type: Simple
extra-source-files: README.md
tested-with: GHC == 7.10.3
cabal-version: >=1.10
source-repository head
type: git
location: git://github.com/jtdawso/haxl-binary
library
exposed-modules: Control.Remote.Haxl.Binary
other-modules:
Control.Remote.Haxl.Binary.Types
build-depends: base >= 4 && < 5
, binary >= 0.7 && < 0.9
, bytestring >= 0.10 && < 0.11
, natural-transformation >= 0.4 && < 0.5
, remote-haxl == 0.1
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
Test-Suite haxl-binary-example
type: exitcode-stdio-1.0
hs-source-dirs: example
main-is: Main.hs
build-depends: base >= 4 && < 5
, binary >= 0.7 && < 0.9
, bytestring >= 0.10 && < 0.11
, mtl >= 2.2 && < 2.3
, natural-transformation >= 0.4 && < 0.5
, network >= 2.6 && < 2.7
, remote-haxl == 0.1
, haxl-binary == 0.1
, stm >= 2.4 && < 2.5
default-language: Haskell2010
ghc-options: -Wall -threaded