-
Notifications
You must be signed in to change notification settings - Fork 3
/
BridgeBuddyServer.cabal
91 lines (83 loc) · 2.88 KB
/
BridgeBuddyServer.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
78
79
80
81
82
83
84
85
86
87
88
89
-- Initial BridgeBuddyServer.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: BridgeBuddyServer
version: 0.1.0.0
synopsis: A JSON RPC Server for Bridge Buddy
homepage: https://github.com/derekmcloughlin/BridgeBuddyServer
license: Apache-2.0
license-file: LICENSE
author: Derek McLoughlin
maintainer: [email protected]
copyright: 2014 Derek McLoughlin
category: Web
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
build-depends:
base >=4.6
, mtl >=2.1
, HUnit >=1.2
, containers >=0.5
, transformers >=0.3
, bytestring >=0.10
, random-shuffle >= 0.0.4
, aeson >= 0.6.1.0
, split >= 0.2.2
, test-framework
, test-framework-hunit
default-language:
Haskell2010
exposed-modules:
BridgeBuddy.Cards
BridgeBuddy.OpeningBids
BridgeBuddy.OpeningResponses
BridgeBuddy.CardsJson
-- HASKELETON: New.Module
ghc-options:
-Wall -fno-warn-orphans
ghc-prof-options:
-auto-all
-prof
hs-source-dirs:
library
executable populate_queue
main-is: populate_queue.hs
build-depends: base >=4.6
, BridgeBuddyServer
, mtl >=2.1
, containers >=0.5
, bytestring >=0.10
, hbeanstalk >= 0.2.4
, random-shuffle >= 0.0.4
, aeson >= 0.6.1.0
ghc-options: -Wall -fno-warn-orphans
hs-source-dirs: populate_queue
default-language: Haskell2010
executable bridge-buddy
main-is: Main.hs
build-depends: base >=4.6
, BridgeBuddyServer
ghc-options: -Wall -fno-warn-orphans
hs-source-dirs: bridge-buddy
default-language: Haskell2010
test-suite tests
build-depends: base >=4.6
, mtl >=2.1
, HUnit >=1.2
, containers >=0.5
, transformers >=0.3
, bytestring >=0.10
, random-shuffle >= 0.0.4
, aeson >= 0.6.1.0
, split >= 0.2.2
, BridgeBuddyServer
, test-framework
, test-framework-hunit
default-language: Haskell2010
ghc-options: -fhpc -fno-warn-orphans
hs-source-dirs: test
, library
main-is: TestSuite.hs
other-modules: BridgeBuddy
type: exitcode-stdio-1.0