-
Notifications
You must be signed in to change notification settings - Fork 0
/
remote-haxl.cabal
78 lines (69 loc) · 2.98 KB
/
remote-haxl.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
-- Initial remote-monad.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: remote-haxl
version: 0.1
description: An implementation of Haxl using remote monad idioms
license: BSD3
license-file: LICENSE
author: Andy Gill, Justin Dawson
maintainer: [email protected]
copyright: (c) 2016 The University of Kansas
category: Control
build-type: Simple
tested-with: GHC == 7.10.3
cabal-version: >=1.10
source-repository head
type: git
location: git://github.com/jtdawso/remote-haxl
library
exposed-modules:
Control.Remote.Packet.Applicative
Control.Remote.Packet.Weak
Control.Remote.Packet
Control.Remote.Applicative
Control.Remote.Haxl
other-modules:
Control.Remote.Haxl.Types
Control.Remote.Applicative.Types
other-extensions: GADTs, RankNTypes, ScopedTypeVariables
build-depends: base >=4.7 && < 5
, exceptions >= 0.8 && < 0.9
, natural-transformation >= 0.4 && < 0.5
, transformers >= 0.4 && < 0.6
, mtl >= 2.2 && < 2.3
hs-source-dirs: src
default-language: Haskell2010
test-suite remote-monad-example
type: exitcode-stdio-1.0
main-is: Main.hs
build-depends: base >= 4.7 && < 5
, exceptions >= 0.8 && < 0.9
, natural-transformation >= 0.4 && < 0.5
, remote-haxl == 0.1
hs-source-dirs: examples
default-language: Haskell2010
ghc-options: -Wall
-- test-suite remote-monad-properties
-- type: exitcode-stdio-1.0
-- main-is: Test.hs
-- build-depends: base >= 4.7 && < 5
-- , containers >= 0.1 && < 0.6
-- , natural-transformation >= 0.4 && < 0.5
-- , remote-monad == 0.3
-- , QuickCheck >= 2.8 && < 2.10
-- , quickcheck-instances >= 0.1 && < 0.4
-- , tasty >= 0.8 && < 0.12
-- , tasty-quickcheck >= 0.8 && < 0.9
-- hs-source-dirs: tests
-- default-language: Haskell2010
-- ghc-options: -Wall
-- benchmark remote-monad-bench
-- type: exitcode-stdio-1.0
-- hs-source-dirs: . criterion
-- main-is: Bench.hs
-- build-depends: base
-- , remote-monad == 0.3
-- , natural-transformation >= 0.4 && < 0.5
-- , criterion
-- default-language: Haskell2010
-- ghc-options: -O0